diff --git a/Dockerfile.api b/Dockerfile.api new file mode 100644 index 0000000..2012daa --- /dev/null +++ b/Dockerfile.api @@ -0,0 +1,20 @@ +FROM python:3.11-slim + +WORKDIR /app + +# Install dependencies +RUN pip install --no-cache-dir \ + flask \ + flask-cors \ + h5py \ + numpy + +# Copy API server +COPY h5_api_server.py . + +# Make executable +RUN chmod +x h5_api_server.py + +EXPOSE 3004 + +CMD ["python", "h5_api_server.py"] diff --git a/__pycache__/app.py.cpython-313.pyc b/__pycache__/app.py.cpython-313.pyc new file mode 100644 index 0000000..9785cdb Binary files /dev/null and b/__pycache__/app.py.cpython-313.pyc differ diff --git a/app.py.final b/app.py.final index 7ffaf25..5e90784 100644 --- a/app.py.final +++ b/app.py.final @@ -1628,7 +1628,48 @@ def real_shots(): return jsonify({'error': 'real_shots.json not found'}), 404 with open(shot_path) as f: return jsonify(json.load(f)) -@app.route("/api/coverage")def get_coverage(): """Get coverage data for all H5 files.""" import re as _re try: darf = {} if os.path.exists(DARF_FILE): with open(DARF_FILE) as _f: darf = json.load(_f) result = [] for f in os.listdir(DATA_DIR): if not f.endswith(".h5"): continue fpath = os.path.join(DATA_DIR, f) info = {"name": f, "size": os.path.getsize(fpath)} m = _re.match(r"auto_(d+)_(d{2})(d{2})(d{2})_b(d+)_rsn(d+)_seq(d+)_(d+)", f) if m: day, hh, mm, ss, board_id, rsn, seq, ts = m.groups() info["board_id"] = int(board_id) info["day"] = int(day) from datetime import datetime as _dt, timedelta as _td base = _dt(2020, 1, 1) + _td(days=int(day)-1, hours=int(hh), minutes=int(mm), seconds=int(ss)) info["date_str"] = base.isoformat() bid_str = str(board_id) if bid_str in darf: info["line"] = darf[bid_str].get("line") info["point"] = darf[bid_str].get("point") info["duration_sec"] = 8000 try: import h5py with h5py.File(fpath, "r") as h5f: attrs = dict(h5f.attrs) info["duration_sec"] = float(attrs.get("duration", attrs.get("record_length", 8000))) except: pass result.append(info) result.sort(key=lambda x: x.get("date_str", "")) return jsonify({"files": result, "count": len(result)}) except Exception as e: return jsonify({"error": str(e)}), 500 + + +@app.route('/api/coverage') +def get_coverage(): + """Get coverage data for all H5 files.""" + import re as _re + try: + darf = {} + if os.path.exists(DARF_FILE): + with open(DARF_FILE) as _f: + darf = json.load(_f) + result = [] + for f in os.listdir(DATA_DIR): + if not f.endswith('.h5'): + continue + fpath = os.path.join(DATA_DIR, f) + info = {'name': f, 'size': os.path.getsize(fpath)} + m = _re.match(r'auto_(\d+)_(\d{2})(\d{2})(\d{2})_b(\d+)_rsn(\d+)_seq(\d+)_(\d+)', f) + if m: + day, hh, mm, ss, board_id, rsn, seq, ts = m.groups() + info['board_id'] = int(board_id) + info['day'] = int(day) + from datetime import datetime as _dt, timedelta as _td + base = _dt(2020, 1, 1) + _td(days=int(day)-1, hours=int(hh), minutes=int(mm), seconds=int(ss)) + info['date_str'] = base.isoformat() + bid_str = str(board_id) + if bid_str in darf: + info['line'] = darf[bid_str].get('line') + info['point'] = darf[bid_str].get('point') + info['duration_sec'] = 8000 + try: + import h5py + with h5py.File(fpath, 'r') as h5f: + attrs = dict(h5f.attrs) + info['duration_sec'] = float(attrs.get('duration', attrs.get('record_length', 8000))) + except: + pass + result.append(info) + result.sort(key=lambda x: x.get('date_str', '')) + return jsonify({'files': result, 'count': len(result)}) + except Exception as e: + return jsonify({'error': str(e)}), 500 if __name__ == '__main__': app.run(host='0.0.0.0', port=3001, debug=False) diff --git a/app.py.fixed b/app.py.fixed new file mode 100644 index 0000000..5daa751 --- /dev/null +++ b/app.py.fixed @@ -0,0 +1,927 @@ +from flask import Flask, jsonify, send_from_directory, request, send_file +from flask_cors import CORS +import os +import re +import h5py +import numpy as np +from datetime import datetime, timedelta +import base64 +import struct +import traceback +import json +import io +import mimetypes +from pyproj import Transformer +import shutil + +app = Flask(__name__, static_folder='static', static_url_path='') +CORS(app) + +DATA_DIR = os.environ.get('DATA_DIR', '/data') +LOCATIONS_FILE = '/home/floppyrj45/seismic-viewer/locations.json' + +# ========== UTILITY FUNCTIONS ========== + +def load_locations(): + """Load locations from JSON file.""" + if os.path.exists(LOCATIONS_FILE): + try: + with open(LOCATIONS_FILE, 'r') as f: + return json.load(f) + except: + return {} + return {} + +def save_locations(locations): + """Save locations to JSON file.""" + with open(LOCATIONS_FILE, 'w') as f: + json.dump(locations, f, indent=2) + +def get_h5_metadata(filepath): + """Extract comprehensive metadata from H5 file.""" + metadata = {} + try: + with h5py.File(filepath, 'r') as f: + # File-level attributes + for k, v in f.attrs.items(): + try: + metadata[k] = v.item() if hasattr(v, 'item') else str(v) + except: + metadata[k] = str(v) + + # Metadata group attributes + if 'metadata' in f: + for k, v in f['metadata'].attrs.items(): + try: + metadata[k] = v.item() if hasattr(v, 'item') else str(v) + except: + metadata[k] = str(v) + + # Calibration group attributes + if 'calibration' in f: + calibration = {} + for k, v in f['calibration'].attrs.items(): + try: + calibration[k] = v.item() if hasattr(v, 'item') else str(v) + except: + calibration[k] = str(v) + metadata['calibration'] = calibration + + # Channel information + channels = [] + for group_name in ['calibrated_data', 'raw_data']: + if group_name in f: + for ds_name in f[group_name].keys(): + ds = f[group_name][ds_name] + ch_info = { + 'name': f"{group_name}/{ds_name}", + 'shape': list(ds.shape), + 'dtype': str(ds.dtype), + 'samples': int(ds.shape[0]) if len(ds.shape) > 0 else 0 + } + for k, v in ds.attrs.items(): + try: + ch_info[k] = v.item() if hasattr(v, 'item') else str(v) + except: + ch_info[k] = str(v) + channels.append(ch_info) + metadata['channels'] = channels + + # Compute timestamps + if 'creation_date' in metadata: + try: + start_time = datetime.fromisoformat(metadata['creation_date'].replace('Z', '+00:00')) + metadata['start_timestamp'] = start_time.isoformat() + + if 'duration_sec' in metadata: + duration_sec = float(metadata['duration_sec']) + end_time = start_time + timedelta(seconds=duration_sec) + metadata['end_timestamp'] = end_time.isoformat() + + # Human-readable duration + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + seconds = int(duration_sec % 60) + metadata['duration_human'] = f"{hours}h {minutes}m {seconds}s" + except Exception as e: + metadata['timestamp_error'] = str(e) + + return metadata + except Exception as e: + return {'error': str(e)} + +# ========== ROUTES ========== + +@app.route('/') +def index(): + return send_from_directory('static', 'index.html') + +@app.route('/api/files') +def list_files(): + try: + files = [] + for fn in os.listdir(DATA_DIR): + if fn.endswith(('.segy', '.sgy', '.h5')): + fp = os.path.join(DATA_DIR, fn) + stat = os.stat(fp) + ftype = 'h5' if fn.endswith('.h5') else 'segy' + files.append({ + 'name': fn, 'size': stat.st_size, + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + 'type': ftype + }) + files.sort(key=lambda x: x['name']) + return jsonify({'files': files, 'count': len(files)}) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//info') +def file_info(filename): + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + stat = os.stat(fp) + info = { + 'name': filename, + 'size': stat.st_size, + 'size_mb': round(stat.st_size / 1048576, 2), + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + 'type': 'h5' if filename.endswith('.h5') else 'segy', + } + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + datasets = [] + def visitor(name, obj): + if isinstance(obj, h5py.Dataset): + datasets.append({ + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'samples': int(obj.shape[0]) if len(obj.shape) > 0 else 0 + }) + f.visititems(visitor) + info['datasets'] = datasets + info['num_datasets'] = len(datasets) + cal = [d for d in datasets if 'calibrated' in d['path']] + raw = [d for d in datasets if 'raw' in d['path']] + info['calibrated_channels'] = len(cal) + info['raw_channels'] = len(raw) + if cal: + info['samples_per_channel'] = cal[0]['samples'] + + # Add sample rate and duration for sidebar display + if 'metadata' in f: + sample_rate = f['metadata'].attrs.get('sample_rate_hz', None) + if sample_rate and cal: + total_samples = cal[0]['samples'] + duration_sec = float(total_samples) / float(sample_rate) + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + info['duration_human'] = f"{hours}h{minutes:02d}m" + info['sample_rate_hz'] = int(sample_rate) + info['num_channels'] = int(len(cal)) + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp, headonly=True) + info['num_traces'] = len(st) + if len(st) > 0: + info['samples_per_trace'] = st[0].stats.npts + info['sample_rate'] = st[0].stats.sampling_rate + info['delta'] = st[0].stats.delta + except Exception as e: + info['segy_error'] = str(e) + return jsonify(info) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +# ========== NEW: METADATA ENDPOINT ========== + +@app.route('/api/file//metadata') +def file_metadata(filename): + """Return detailed metadata for a file.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + stat = os.stat(fp) + result = { + 'filename': filename, + 'file_size_bytes': stat.st_size, + 'file_size_mb': round(stat.st_size / 1048576, 2), + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + } + + if filename.endswith('.h5'): + metadata = get_h5_metadata(fp) + result.update(metadata) + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp, headonly=True) + result['num_traces'] = len(st) + if len(st) > 0: + result['sample_rate'] = st[0].stats.sampling_rate + result['samples_per_trace'] = st[0].stats.npts + result['start_timestamp'] = st[0].stats.starttime.isoformat() + result['end_timestamp'] = st[0].stats.endtime.isoformat() + duration_sec = (st[0].stats.endtime - st[0].stats.starttime) + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + seconds = int(duration_sec % 60) + result['duration_human'] = f"{hours}h {minutes}m {seconds}s" + result['duration_sec'] = duration_sec + except Exception as e: + result['segy_error'] = str(e) + + return jsonify(result) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +# ========== NEW: LOCATIONS ENDPOINT ========== + +@app.route('/api/locations', methods=['GET']) +def get_locations(): + """Get all file locations.""" + try: + locations = load_locations() + return jsonify(locations) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/locations', methods=['POST']) +def update_location(): + """Update location for a file.""" + try: + data = request.json + filename = data.get('filename') + lat = data.get('lat') + lon = data.get('lon') + + if not all([filename, lat is not None, lon is not None]): + return jsonify({'error': 'Missing filename, lat, or lon'}), 400 + + locations = load_locations() + locations[filename] = { + 'lat': float(lat), + 'lon': float(lon), + 'updated': datetime.now().isoformat() + } + save_locations(locations) + + return jsonify({'success': True, 'locations': locations}) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +# ========== NEW: EXTRACT ENDPOINT ========== + +@app.route('/api/file//extract') +def extract_segment(filename): + """Extract a time segment from a file and return as CSV or H5.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + # Parameters + start_sec = float(request.args.get('start_sec', 0)) + duration_sec = float(request.args.get('duration_sec', 1200)) # Default 20 min + channel = request.args.get('channel', 'calibrated_data/channel_1') + format_type = request.args.get('format', 'csv') # csv or h5 + + if not filename.endswith('.h5'): + return jsonify({'error': 'Extract only supported for H5 files'}), 400 + + with h5py.File(fp, 'r') as f: + if channel not in f: + return jsonify({'error': f'Channel {channel} not found'}), 404 + + # Get metadata + sample_rate = f['metadata'].attrs.get('sample_rate_hz', 500) + total_samples = f[channel].shape[0] + + # Calculate sample range + start_sample = int(start_sec * sample_rate) + end_sample = int((start_sec + duration_sec) * sample_rate) + + # Clamp to valid range + start_sample = max(0, min(start_sample, total_samples - 1)) + end_sample = max(start_sample + 1, min(end_sample, total_samples)) + + # Extract data + data = f[channel][start_sample:end_sample] + + if format_type == 'csv': + # Generate CSV + output = io.StringIO() + output.write(f"# Channel: {channel}\n") + output.write(f"# Start: {start_sec}s, Duration: {duration_sec}s\n") + output.write(f"# Sample rate: {sample_rate} Hz\n") + output.write(f"# Samples: {len(data)}\n") + output.write("sample,time_sec,value\n") + + for i, val in enumerate(data): + time_s = (start_sample + i) / sample_rate + output.write(f"{start_sample + i},{time_s:.6f},{val}\n") + + output.seek(0) + return send_file( + io.BytesIO(output.getvalue().encode('utf-8')), + mimetype='text/csv', + as_attachment=True, + download_name=f'{filename.replace(".h5", "")}_extract_{int(start_sec)}_{int(duration_sec)}s.csv' + ) + + elif format_type == 'h5': + # Generate H5 + output = io.BytesIO() + with h5py.File(output, 'w') as out_f: + # Copy metadata + if 'metadata' in f: + meta_group = out_f.create_group('metadata') + for k, v in f['metadata'].attrs.items(): + meta_group.attrs[k] = v + meta_group.attrs['extract_start_sec'] = start_sec + meta_group.attrs['extract_duration_sec'] = duration_sec + meta_group.attrs['extract_start_sample'] = start_sample + meta_group.attrs['extract_end_sample'] = end_sample + + # Create dataset + ds = out_f.create_dataset('data', data=data, compression='gzip') + ds.attrs['channel'] = channel + ds.attrs['sample_rate_hz'] = sample_rate + + # Copy channel attributes + if channel in f: + for k, v in f[channel].attrs.items(): + ds.attrs[k] = v + + output.seek(0) + return send_file( + output, + mimetype='application/x-hdf5', + as_attachment=True, + download_name=f'{filename.replace(".h5", "")}_extract_{int(start_sec)}_{int(duration_sec)}s.h5' + ) + + else: + return jsonify({'error': 'Invalid format. Use csv or h5'}), 400 + + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +# ========== EXISTING ENDPOINTS (kept for compatibility) ========== + +@app.route('/api/file//section') +def file_section(filename): + """Return 2D section data as base64 float32 array.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + trace_start = int(request.args.get('trace_start', 0)) + trace_count = int(request.args.get('trace_count', 200)) + samples_per_trace = int(request.args.get('samples_per_trace', 1000)) + channel = request.args.get('channel', 'calibrated_data/channel_1') + max_samples = int(request.args.get('max_samples', 500)) + + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + if channel not in f: + avail = [] + f.visititems(lambda n, o: avail.append(n) if isinstance(o, h5py.Dataset) else None) + return jsonify({'error': f'Channel not found', 'available': avail}), 404 + + data = f[channel] + total_samples = data.shape[0] + total_traces = total_samples // samples_per_trace + + trace_start = max(0, min(trace_start, max(0, total_traces - 1))) + trace_end = min(trace_start + trace_count, total_traces) + actual_count = trace_end - trace_start + + if actual_count <= 0: + return jsonify({'error': 'No traces in range'}), 400 + + start_sample = trace_start * samples_per_trace + end_sample = trace_end * samples_per_trace + raw = data[start_sample:end_sample] + + section = raw.reshape(actual_count, samples_per_trace).astype(np.float32) + + if samples_per_trace > max_samples: + factor = samples_per_trace // max_samples + trimmed = section[:, :factor * max_samples] + section = trimmed.reshape(actual_count, max_samples, factor).mean(axis=2).astype(np.float32) + actual_spt = max_samples + else: + actual_spt = samples_per_trace + + vmin = float(np.min(section)) + vmax = float(np.max(section)) + encoded = base64.b64encode(section.tobytes()).decode('ascii') + + return jsonify({ + 'num_traces': int(actual_count), + 'samples_per_trace': actual_spt, + 'trace_start': trace_start, + 'total_traces': total_traces, + 'total_samples': int(total_samples), + 'vmin': vmin, 'vmax': vmax, + 'data_b64': encoded, + 'dtype': 'float32' + }) + + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp) + total_traces = len(st) + + trace_start = max(0, min(trace_start, total_traces - 1)) + trace_end = min(trace_start + trace_count, total_traces) + actual_count = trace_end - trace_start + + if actual_count <= 0: + return jsonify({'error': 'No traces'}), 400 + + spt = st[0].stats.npts + actual_spt = spt + + section = np.zeros((actual_count, spt), dtype=np.float32) + for i in range(actual_count): + tr = st[trace_start + i] + n = min(spt, tr.stats.npts) + section[i, :n] = tr.data[:n].astype(np.float32) + + if spt > max_samples: + factor = spt // max_samples + trimmed = section[:, :factor * max_samples] + section = trimmed.reshape(actual_count, max_samples, factor).mean(axis=2).astype(np.float32) + actual_spt = max_samples + + vmin = float(np.min(section)) + vmax = float(np.max(section)) + encoded = base64.b64encode(section.tobytes()).decode('ascii') + + return jsonify({ + 'num_traces': int(actual_count), + 'samples_per_trace': actual_spt, + 'trace_start': trace_start, + 'total_traces': total_traces, + 'total_samples': int(total_traces * spt), + 'vmin': vmin, 'vmax': vmax, + 'data_b64': encoded, + 'dtype': 'float32' + }) + except Exception as e: + return jsonify({'error': f'SEGY read error: {e}'}), 500 + + return jsonify({'error': 'Unsupported format'}), 400 + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//headers') +def file_headers(filename): + """Return trace headers for SEGY or dataset attributes for H5.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + attrs = {} + for k, v in f.attrs.items(): + try: + attrs[k] = v.item() if hasattr(v, 'item') else str(v) + except: + attrs[k] = str(v) + + datasets = [] + def visitor(name, obj): + if isinstance(obj, h5py.Dataset): + ds_info = { + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'size': int(np.prod(obj.shape)), + } + for ak, av in obj.attrs.items(): + try: + ds_info[f'attr:{ak}'] = av.item() if hasattr(av, 'item') else str(av) + except: + ds_info[f'attr:{ak}'] = str(av) + datasets.append(ds_info) + f.visititems(visitor) + + groups = [] + def gvisitor(name, obj): + if isinstance(obj, h5py.Group): + g_info = {'path': name} + for ak, av in obj.attrs.items(): + try: + g_info[f'attr:{ak}'] = av.item() if hasattr(av, 'item') else str(av) + except: + g_info[f'attr:{ak}'] = str(av) + if len(g_info) > 1: + groups.append(g_info) + f.visititems(gvisitor) + + return jsonify({ + 'type': 'h5', + 'file_attrs': attrs, + 'datasets': datasets, + 'groups': groups + }) + + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + from obspy.io.segy.segy import _read_segy + + segy = _read_segy(fp) + + bfh = {} + if hasattr(segy, 'binary_file_header'): + h = segy.binary_file_header + for attr in ['job_identification_number', 'line_number', 'reel_number', + 'number_of_data_traces_per_ensemble', 'number_of_auxiliary_traces_per_ensemble', + 'sample_interval_in_microseconds', 'number_of_samples_per_data_trace', + 'data_sample_format_code']: + if hasattr(h, attr): + bfh[attr] = getattr(h, attr) + + trace_headers = [] + max_traces = min(50, len(segy.traces)) + for i in range(max_traces): + th = segy.traces[i].header + trace_headers.append({ + 'trace': i, + 'inline': getattr(th, 'trace_sequence_number_within_line', None), + 'crossline': getattr(th, 'trace_sequence_number_within_segy_file', None), + 'field_record': getattr(th, 'original_field_record_number', None), + 'trace_number': getattr(th, 'trace_number_within_the_original_field_record', None), + 'cdp': getattr(th, 'ensemble_number', None), + 'trace_in_ensemble': getattr(th, 'trace_number_within_the_ensemble', None), + 'offset': getattr(th, 'distance_from_center_of_the_source_point_to_the_center_of_the_receiver_group', None), + 'source_x': getattr(th, 'source_coordinate_x', None), + 'source_y': getattr(th, 'source_coordinate_y', None), + 'group_x': getattr(th, 'group_coordinate_x', None), + 'group_y': getattr(th, 'group_coordinate_y', None), + 'num_samples': getattr(th, 'number_of_samples_in_this_trace', None), + 'sample_interval': getattr(th, 'sample_interval_in_ms_for_this_trace', None), + }) + + return jsonify({ + 'type': 'segy', + 'binary_header': bfh, + 'trace_headers': trace_headers, + 'total_traces': len(segy.traces) + }) + except Exception as e: + return jsonify({'error': f'SEGY header read error: {e}'}), 500 + + return jsonify({'error': 'Unsupported'}), 400 + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//waveform') +def file_waveform(filename): + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + max_pts = int(request.args.get('points', 5000)) + channel = request.args.get('channel', 'calibrated_data/channel_1') + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + if channel not in f: + return jsonify({'error': 'Channel not found'}), 404 + data = f[channel][:] + n = len(data) + if n <= max_pts: + values = data.tolist() + indices = list(range(n)) + else: + step = n // max_pts + indices = list(range(0, n, step))[:max_pts] + values = [float(data[i]) for i in indices] + return jsonify({ + 'name': filename, 'channel': channel, + 'total_samples': n, + 'displayed_points': len(values), + 'min': float(np.min(data)), 'max': float(np.max(data)), + 'mean': float(np.mean(data)), 'std': float(np.std(data)), + 'x': indices, 'y': values + }) + return jsonify({'error': 'Waveform only for H5'}), 400 + except Exception as e: + return jsonify({'error': str(e)}), 500 + + +# ========== GEOSUP ENDPOINTS ========== + +# UTM Zone 31N to WGS84 transformer +utm_to_wgs84 = Transformer.from_crs("EPSG:32631", "EPSG:4326", always_xy=True) + +GEOSUP_DIR = os.path.join(app.static_folder, '') # Static folder + +def parse_sps_line(line): + """Parse SPS S01/R01 format line. Fixed-width format.""" + if len(line) < 65: + return None + try: + record_type = line[0].strip() # S or R + line_num = line[1:11].strip() + point = line[11:21].strip() + index = line[21:23].strip() + # Easting and Northing are in columns ~26-52 + coord_part = line[46:66].strip() + # Parse XXXXXX.XNNNNNNN.NN format + match = re.match(r'(\d{5,6}\.\d{1,2})(\d{7}\.\d{1,2})', coord_part) + if match: + easting = float(match.group(1)) + northing = float(match.group(2)) + else: + parts = coord_part.split('.') + if len(parts) >= 2: + easting_int = parts[0] + rest = '.'.join(parts[1:]) + if len(rest) > 9: + easting = float(easting_int + '.' + rest[:2]) + northing = float(rest[2:]) + else: + return None + else: + return None + + depth = line[66:72].strip() if len(line) > 52 else '0' + depth = float(depth) if depth else 0 + + return { + 'type': record_type, + 'line': line_num, + 'point': point, + 'index': index, + 'easting': easting, + 'northing': northing, + 'depth': depth + } + except Exception: + return None + +def parse_deployment_csv(filepath): + """Parse deployment CSV file (SETE-0965P1002.csv format).""" + records = [] + try: + with open(filepath, 'r') as f: + for line in f: + parts = line.strip().split(',') + if len(parts) >= 8: + try: + record = { + 'line': parts[0], + 'point': parts[1], + 'index': parts[2], + 'name': parts[3], + 'easting': float(parts[5]), + 'northing': float(parts[6]), + 'depth': float(parts[7]), + } + if len(parts) >= 16: + record['year'] = int(parts[10]) + record['day'] = int(parts[11]) + record['hour'] = int(parts[12]) + record['minute'] = int(parts[13]) + record['second'] = int(parts[14]) + records.append(record) + except (ValueError, IndexError): + continue + except Exception: + pass + return records + +@app.route('/api/geosup/positions') +def geosup_positions(): + """Return GeoJSON with source, receiver, and deployment positions.""" + try: + features = [] + + # Parse sources (S01) + s01_path = os.path.join(GEOSUP_DIR, 'SeteSxPreplots.s01') + if os.path.exists(s01_path): + with open(s01_path, 'r') as f: + for line in f: + record = parse_sps_line(line) + if record and record['type'] == 'S': + lon, lat = utm_to_wgs84.transform(record['easting'], record['northing']) + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': { + 'category': 'source', + 'line': record['line'], + 'point': record['point'], + 'easting': record['easting'], + 'northing': record['northing'], + 'depth': record['depth'] + } + }) + + # Parse receivers (R01) + r01_path = os.path.join(GEOSUP_DIR, 'SeteRxPreplots.r01') + if os.path.exists(r01_path): + with open(r01_path, 'r') as f: + for line in f: + record = parse_sps_line(line) + if record and record['type'] == 'R': + lon, lat = utm_to_wgs84.transform(record['easting'], record['northing']) + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': { + 'category': 'receiver', + 'line': record['line'], + 'point': record['point'], + 'easting': record['easting'], + 'northing': record['northing'], + 'depth': record['depth'] + } + }) + + # Parse deployments (CSV) + csv_path = os.path.join(GEOSUP_DIR, 'SETE-0965P1002.csv') + if os.path.exists(csv_path): + deployments = parse_deployment_csv(csv_path) + for d in deployments: + lon, lat = utm_to_wgs84.transform(d['easting'], d['northing']) + props = { + 'category': 'deployment', + 'line': d['line'], + 'point': d['point'], + 'name': d['name'], + 'easting': d['easting'], + 'northing': d['northing'], + 'depth': d['depth'] + } + if 'year' in d: + props['timestamp'] = f"{d['year']}-{d['day']:03d} {d['hour']:02d}:{d['minute']:02d}:{d['second']:02d}" + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': props + }) + + sources = len([f for f in features if f['properties']['category'] == 'source']) + receivers = len([f for f in features if f['properties']['category'] == 'receiver']) + deployments = len([f for f in features if f['properties']['category'] == 'deployment']) + + return jsonify({ + 'type': 'FeatureCollection', + 'features': features, + 'counts': {'sources': sources, 'receivers': receivers, 'deployments': deployments, 'total': len(features)} + }) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/documents') +def geosup_documents(): + """List all geosup documents in static folder.""" + try: + documents = [] + doc_extensions = ('.pdf', '.docx', '.xlsx', '.doc', '.xls') + + for fn in os.listdir(GEOSUP_DIR): + if fn.lower().endswith(doc_extensions): + fp = os.path.join(GEOSUP_DIR, fn) + stat = os.stat(fp) + ext = os.path.splitext(fn)[1].lower() + doc_type = {'.pdf': 'PDF', '.docx': 'Word', '.doc': 'Word', '.xlsx': 'Excel', '.xls': 'Excel'}.get(ext, 'Document') + icon = {'.pdf': '📕', '.docx': '📘', '.doc': '📘', '.xlsx': '📗', '.xls': '📗'}.get(ext, '📄') + is_gundalf = 'GUNDALF' in fn.upper() + is_params = 'Acquisition_Parameters' in fn or 'SpiceRack' in fn + + documents.append({ + 'name': fn, + 'size': stat.st_size, + 'size_human': f"{stat.st_size / 1024:.1f} KB" if stat.st_size < 1048576 else f"{stat.st_size / 1048576:.1f} MB", + 'type': doc_type, + 'icon': icon, + 'is_gundalf': is_gundalf, + 'is_params': is_params, + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat() + }) + + documents.sort(key=lambda d: (not d['is_gundalf'], not d['is_params'], d['name'])) + return jsonify({'documents': documents, 'count': len(documents)}) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/documents/') +def geosup_download(filename): + """Download a geosup document.""" + try: + safe_name = os.path.basename(filename) + filepath = os.path.join(GEOSUP_DIR, safe_name) + if not os.path.exists(filepath): + return jsonify({'error': 'File not found'}), 404 + mime_type, _ = mimetypes.guess_type(filepath) + return send_file(filepath, mimetype=mime_type or 'application/octet-stream', as_attachment=True, download_name=safe_name) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/acquisition-params') +def geosup_acquisition_params(): + """Extract key parameters from the acquisition spreadsheet.""" + try: + xlsx_path = os.path.join(GEOSUP_DIR, 'SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx') + if not os.path.exists(xlsx_path): + return jsonify({'error': 'Acquisition parameters file not found'}), 404 + from openpyxl import load_workbook + wb = load_workbook(xlsx_path, data_only=True) + params = {'sheets': [], 'summary': {}} + for sheet_name in wb.sheetnames: + ws = wb[sheet_name] + sheet_data = {'name': sheet_name, 'rows': []} + row_count = 0 + for row in ws.iter_rows(max_row=30, values_only=True): + if any(cell is not None for cell in row): + sheet_data['rows'].append([str(cell) if cell is not None else '' for cell in row[:10]]) + row_count += 1 + if row_count >= 20: + break + params['sheets'].append(sheet_data) + wb.close() + return jsonify(params) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/pipeline-status') +def pipeline_status(): + """Return pipeline statistics and disk usage.""" + try: + raw_dir = '/mnt/usb/Recordings' + output_dir = '/mnt/usb/H5-Output' + + # Count files + raw_count = 0 + if os.path.exists(raw_dir): + raw_count = len([n for n in os.listdir(raw_dir) if n.lower().endswith(('.raw', '.manta'))]) + + segy_count = 0 + h5_count = 0 + if os.path.exists(output_dir): + files = os.listdir(output_dir) + segy_count = len([n for n in files if n.lower().endswith(('.segy', '.sgy'))]) + h5_count = len([n for n in files if n.lower().endswith('.h5')]) + + # Disk usage + total, used, free = shutil.disk_usage(output_dir) + + # Conversion progress + progress = None + if os.path.exists('/tmp/segy2h5_progress.json'): + try: + with open('/tmp/segy2h5_progress.json', 'r') as f: + progress = json.load(f) + except: + pass + + return jsonify({ + 'counts': { + 'raw': raw_count, + 'segy': segy_count, + 'h5': h5_count, + 'total_expected': 345 # Hardcoded target from context + }, + 'disk': { + 'total_gb': round(total / (1024**3), 2), + 'used_gb': round(used / (1024**3), 2), + 'free_gb': round(free / (1024**3), 2), + 'percent': round((used / total) * 100, 1) + }, + 'progress': progress + }) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=3001, debug=False) + +@app.route('/test-map') +def test_map(): + return send_from_directory('static', 'test-map.html') diff --git a/app.py.original b/app.py.original new file mode 100644 index 0000000..61adf26 --- /dev/null +++ b/app.py.original @@ -0,0 +1,927 @@ +from flask import Flask, jsonify, send_from_directory, request, send_file +from flask_cors import CORS +import os +import re +import h5py +import numpy as np +from datetime import datetime, timedelta +import base64 +import struct +import traceback +import json +import io +import mimetypes +from pyproj import Transformer +import shutil + +app = Flask(__name__, static_folder='static', static_url_path='') +CORS(app) + +DATA_DIR = os.environ.get('DATA_DIR', '/data') +LOCATIONS_FILE = '/home/floppyrj45/seismic-viewer/locations.json' + +# ========== UTILITY FUNCTIONS ========== + +def load_locations(): + """Load locations from JSON file.""" + if os.path.exists(LOCATIONS_FILE): + try: + with open(LOCATIONS_FILE, 'r') as f: + return json.load(f) + except: + return {} + return {} + +def save_locations(locations): + """Save locations to JSON file.""" + with open(LOCATIONS_FILE, 'w') as f: + json.dump(locations, f, indent=2) + +def get_h5_metadata(filepath): + """Extract comprehensive metadata from H5 file.""" + metadata = {} + try: + with h5py.File(filepath, 'r') as f: + # File-level attributes + for k, v in f.attrs.items(): + try: + metadata[k] = v.item() if hasattr(v, 'item') else str(v) + except: + metadata[k] = str(v) + + # Metadata group attributes + if 'metadata' in f: + for k, v in f['metadata'].attrs.items(): + try: + metadata[k] = v.item() if hasattr(v, 'item') else str(v) + except: + metadata[k] = str(v) + + # Calibration group attributes + if 'calibration' in f: + calibration = {} + for k, v in f['calibration'].attrs.items(): + try: + calibration[k] = v.item() if hasattr(v, 'item') else str(v) + except: + calibration[k] = str(v) + metadata['calibration'] = calibration + + # Channel information + channels = [] + for group_name in ['calibrated_data', 'raw_data']: + if group_name in f: + for ds_name in f[group_name].keys(): + ds = f[group_name][ds_name] + ch_info = { + 'name': f"{group_name}/{ds_name}", + 'shape': list(ds.shape), + 'dtype': str(ds.dtype), + 'samples': int(ds.shape[0]) if len(ds.shape) > 0 else 0 + } + for k, v in ds.attrs.items(): + try: + ch_info[k] = v.item() if hasattr(v, 'item') else str(v) + except: + ch_info[k] = str(v) + channels.append(ch_info) + metadata['channels'] = channels + + # Compute timestamps + if 'creation_date' in metadata: + try: + start_time = datetime.fromisoformat(metadata['creation_date'].replace('Z', '+00:00')) + metadata['start_timestamp'] = start_time.isoformat() + + if 'duration_sec' in metadata: + duration_sec = float(metadata['duration_sec']) + end_time = start_time + timedelta(seconds=duration_sec) + metadata['end_timestamp'] = end_time.isoformat() + + # Human-readable duration + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + seconds = int(duration_sec % 60) + metadata['duration_human'] = f"{hours}h {minutes}m {seconds}s" + except Exception as e: + metadata['timestamp_error'] = str(e) + + return metadata + except Exception as e: + return {'error': str(e)} + +# ========== ROUTES ========== + +@app.route('/') +def index(): + return send_from_directory('static', 'index.html') + +@app.route('/api/files') +def list_files(): + try: + files = [] + for fn in os.listdir(DATA_DIR): + if fn.endswith(('.segy', '.sgy', '.h5')): + fp = os.path.join(DATA_DIR, fn) + stat = os.stat(fp) + ftype = 'h5' if fn.endswith('.h5') else 'segy' + files.append({ + 'name': fn, 'size': stat.st_size, + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + 'type': ftype + }) + files.sort(key=lambda x: x['name']) + return jsonify({'files': files, 'count': len(files)}) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//info') +def file_info(filename): + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + stat = os.stat(fp) + info = { + 'name': filename, + 'size': stat.st_size, + 'size_mb': round(stat.st_size / 1048576, 2), + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + 'type': 'h5' if filename.endswith('.h5') else 'segy', + } + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + datasets = [] + def visitor(name, obj): + if isinstance(obj, h5py.Dataset): + datasets.append({ + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'samples': int(obj.shape[0]) if len(obj.shape) > 0 else 0 + }) + f.visititems(visitor) + info['datasets'] = datasets + info['num_datasets'] = len(datasets) + cal = [d for d in datasets if 'calibrated' in d['path']] + raw = [d for d in datasets if 'raw' in d['path']] + info['calibrated_channels'] = len(cal) + info['raw_channels'] = len(raw) + if cal: + info['samples_per_channel'] = cal[0]['samples'] + + # Add sample rate and duration for sidebar display + if 'metadata' in f: + sample_rate = f['metadata'].attrs.get('sample_rate_hz', None) + if sample_rate and cal: + total_samples = cal[0]['samples'] + duration_sec = total_samples / sample_rate + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + info['duration_human'] = f"{hours}h{minutes:02d}m" + info['sample_rate_hz'] = sample_rate + info['num_channels'] = len(cal) + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp, headonly=True) + info['num_traces'] = len(st) + if len(st) > 0: + info['samples_per_trace'] = st[0].stats.npts + info['sample_rate'] = st[0].stats.sampling_rate + info['delta'] = st[0].stats.delta + except Exception as e: + info['segy_error'] = str(e) + return jsonify(info) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +# ========== NEW: METADATA ENDPOINT ========== + +@app.route('/api/file//metadata') +def file_metadata(filename): + """Return detailed metadata for a file.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + stat = os.stat(fp) + result = { + 'filename': filename, + 'file_size_bytes': stat.st_size, + 'file_size_mb': round(stat.st_size / 1048576, 2), + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + } + + if filename.endswith('.h5'): + metadata = get_h5_metadata(fp) + result.update(metadata) + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp, headonly=True) + result['num_traces'] = len(st) + if len(st) > 0: + result['sample_rate'] = st[0].stats.sampling_rate + result['samples_per_trace'] = st[0].stats.npts + result['start_timestamp'] = st[0].stats.starttime.isoformat() + result['end_timestamp'] = st[0].stats.endtime.isoformat() + duration_sec = (st[0].stats.endtime - st[0].stats.starttime) + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + seconds = int(duration_sec % 60) + result['duration_human'] = f"{hours}h {minutes}m {seconds}s" + result['duration_sec'] = duration_sec + except Exception as e: + result['segy_error'] = str(e) + + return jsonify(result) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +# ========== NEW: LOCATIONS ENDPOINT ========== + +@app.route('/api/locations', methods=['GET']) +def get_locations(): + """Get all file locations.""" + try: + locations = load_locations() + return jsonify(locations) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/locations', methods=['POST']) +def update_location(): + """Update location for a file.""" + try: + data = request.json + filename = data.get('filename') + lat = data.get('lat') + lon = data.get('lon') + + if not all([filename, lat is not None, lon is not None]): + return jsonify({'error': 'Missing filename, lat, or lon'}), 400 + + locations = load_locations() + locations[filename] = { + 'lat': float(lat), + 'lon': float(lon), + 'updated': datetime.now().isoformat() + } + save_locations(locations) + + return jsonify({'success': True, 'locations': locations}) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +# ========== NEW: EXTRACT ENDPOINT ========== + +@app.route('/api/file//extract') +def extract_segment(filename): + """Extract a time segment from a file and return as CSV or H5.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + # Parameters + start_sec = float(request.args.get('start_sec', 0)) + duration_sec = float(request.args.get('duration_sec', 1200)) # Default 20 min + channel = request.args.get('channel', 'calibrated_data/channel_1') + format_type = request.args.get('format', 'csv') # csv or h5 + + if not filename.endswith('.h5'): + return jsonify({'error': 'Extract only supported for H5 files'}), 400 + + with h5py.File(fp, 'r') as f: + if channel not in f: + return jsonify({'error': f'Channel {channel} not found'}), 404 + + # Get metadata + sample_rate = f['metadata'].attrs.get('sample_rate_hz', 500) + total_samples = f[channel].shape[0] + + # Calculate sample range + start_sample = int(start_sec * sample_rate) + end_sample = int((start_sec + duration_sec) * sample_rate) + + # Clamp to valid range + start_sample = max(0, min(start_sample, total_samples - 1)) + end_sample = max(start_sample + 1, min(end_sample, total_samples)) + + # Extract data + data = f[channel][start_sample:end_sample] + + if format_type == 'csv': + # Generate CSV + output = io.StringIO() + output.write(f"# Channel: {channel}\n") + output.write(f"# Start: {start_sec}s, Duration: {duration_sec}s\n") + output.write(f"# Sample rate: {sample_rate} Hz\n") + output.write(f"# Samples: {len(data)}\n") + output.write("sample,time_sec,value\n") + + for i, val in enumerate(data): + time_s = (start_sample + i) / sample_rate + output.write(f"{start_sample + i},{time_s:.6f},{val}\n") + + output.seek(0) + return send_file( + io.BytesIO(output.getvalue().encode('utf-8')), + mimetype='text/csv', + as_attachment=True, + download_name=f'{filename.replace(".h5", "")}_extract_{int(start_sec)}_{int(duration_sec)}s.csv' + ) + + elif format_type == 'h5': + # Generate H5 + output = io.BytesIO() + with h5py.File(output, 'w') as out_f: + # Copy metadata + if 'metadata' in f: + meta_group = out_f.create_group('metadata') + for k, v in f['metadata'].attrs.items(): + meta_group.attrs[k] = v + meta_group.attrs['extract_start_sec'] = start_sec + meta_group.attrs['extract_duration_sec'] = duration_sec + meta_group.attrs['extract_start_sample'] = start_sample + meta_group.attrs['extract_end_sample'] = end_sample + + # Create dataset + ds = out_f.create_dataset('data', data=data, compression='gzip') + ds.attrs['channel'] = channel + ds.attrs['sample_rate_hz'] = sample_rate + + # Copy channel attributes + if channel in f: + for k, v in f[channel].attrs.items(): + ds.attrs[k] = v + + output.seek(0) + return send_file( + output, + mimetype='application/x-hdf5', + as_attachment=True, + download_name=f'{filename.replace(".h5", "")}_extract_{int(start_sec)}_{int(duration_sec)}s.h5' + ) + + else: + return jsonify({'error': 'Invalid format. Use csv or h5'}), 400 + + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +# ========== EXISTING ENDPOINTS (kept for compatibility) ========== + +@app.route('/api/file//section') +def file_section(filename): + """Return 2D section data as base64 float32 array.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + trace_start = int(request.args.get('trace_start', 0)) + trace_count = int(request.args.get('trace_count', 200)) + samples_per_trace = int(request.args.get('samples_per_trace', 1000)) + channel = request.args.get('channel', 'calibrated_data/channel_1') + max_samples = int(request.args.get('max_samples', 500)) + + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + if channel not in f: + avail = [] + f.visititems(lambda n, o: avail.append(n) if isinstance(o, h5py.Dataset) else None) + return jsonify({'error': f'Channel not found', 'available': avail}), 404 + + data = f[channel] + total_samples = data.shape[0] + total_traces = total_samples // samples_per_trace + + trace_start = max(0, min(trace_start, max(0, total_traces - 1))) + trace_end = min(trace_start + trace_count, total_traces) + actual_count = trace_end - trace_start + + if actual_count <= 0: + return jsonify({'error': 'No traces in range'}), 400 + + start_sample = trace_start * samples_per_trace + end_sample = trace_end * samples_per_trace + raw = data[start_sample:end_sample] + + section = raw.reshape(actual_count, samples_per_trace).astype(np.float32) + + if samples_per_trace > max_samples: + factor = samples_per_trace // max_samples + trimmed = section[:, :factor * max_samples] + section = trimmed.reshape(actual_count, max_samples, factor).mean(axis=2).astype(np.float32) + actual_spt = max_samples + else: + actual_spt = samples_per_trace + + vmin = float(np.min(section)) + vmax = float(np.max(section)) + encoded = base64.b64encode(section.tobytes()).decode('ascii') + + return jsonify({ + 'num_traces': int(actual_count), + 'samples_per_trace': actual_spt, + 'trace_start': trace_start, + 'total_traces': total_traces, + 'total_samples': int(total_samples), + 'vmin': vmin, 'vmax': vmax, + 'data_b64': encoded, + 'dtype': 'float32' + }) + + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp) + total_traces = len(st) + + trace_start = max(0, min(trace_start, total_traces - 1)) + trace_end = min(trace_start + trace_count, total_traces) + actual_count = trace_end - trace_start + + if actual_count <= 0: + return jsonify({'error': 'No traces'}), 400 + + spt = st[0].stats.npts + actual_spt = spt + + section = np.zeros((actual_count, spt), dtype=np.float32) + for i in range(actual_count): + tr = st[trace_start + i] + n = min(spt, tr.stats.npts) + section[i, :n] = tr.data[:n].astype(np.float32) + + if spt > max_samples: + factor = spt // max_samples + trimmed = section[:, :factor * max_samples] + section = trimmed.reshape(actual_count, max_samples, factor).mean(axis=2).astype(np.float32) + actual_spt = max_samples + + vmin = float(np.min(section)) + vmax = float(np.max(section)) + encoded = base64.b64encode(section.tobytes()).decode('ascii') + + return jsonify({ + 'num_traces': int(actual_count), + 'samples_per_trace': actual_spt, + 'trace_start': trace_start, + 'total_traces': total_traces, + 'total_samples': int(total_traces * spt), + 'vmin': vmin, 'vmax': vmax, + 'data_b64': encoded, + 'dtype': 'float32' + }) + except Exception as e: + return jsonify({'error': f'SEGY read error: {e}'}), 500 + + return jsonify({'error': 'Unsupported format'}), 400 + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//headers') +def file_headers(filename): + """Return trace headers for SEGY or dataset attributes for H5.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + attrs = {} + for k, v in f.attrs.items(): + try: + attrs[k] = v.item() if hasattr(v, 'item') else str(v) + except: + attrs[k] = str(v) + + datasets = [] + def visitor(name, obj): + if isinstance(obj, h5py.Dataset): + ds_info = { + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'size': int(np.prod(obj.shape)), + } + for ak, av in obj.attrs.items(): + try: + ds_info[f'attr:{ak}'] = av.item() if hasattr(av, 'item') else str(av) + except: + ds_info[f'attr:{ak}'] = str(av) + datasets.append(ds_info) + f.visititems(visitor) + + groups = [] + def gvisitor(name, obj): + if isinstance(obj, h5py.Group): + g_info = {'path': name} + for ak, av in obj.attrs.items(): + try: + g_info[f'attr:{ak}'] = av.item() if hasattr(av, 'item') else str(av) + except: + g_info[f'attr:{ak}'] = str(av) + if len(g_info) > 1: + groups.append(g_info) + f.visititems(gvisitor) + + return jsonify({ + 'type': 'h5', + 'file_attrs': attrs, + 'datasets': datasets, + 'groups': groups + }) + + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + from obspy.io.segy.segy import _read_segy + + segy = _read_segy(fp) + + bfh = {} + if hasattr(segy, 'binary_file_header'): + h = segy.binary_file_header + for attr in ['job_identification_number', 'line_number', 'reel_number', + 'number_of_data_traces_per_ensemble', 'number_of_auxiliary_traces_per_ensemble', + 'sample_interval_in_microseconds', 'number_of_samples_per_data_trace', + 'data_sample_format_code']: + if hasattr(h, attr): + bfh[attr] = getattr(h, attr) + + trace_headers = [] + max_traces = min(50, len(segy.traces)) + for i in range(max_traces): + th = segy.traces[i].header + trace_headers.append({ + 'trace': i, + 'inline': getattr(th, 'trace_sequence_number_within_line', None), + 'crossline': getattr(th, 'trace_sequence_number_within_segy_file', None), + 'field_record': getattr(th, 'original_field_record_number', None), + 'trace_number': getattr(th, 'trace_number_within_the_original_field_record', None), + 'cdp': getattr(th, 'ensemble_number', None), + 'trace_in_ensemble': getattr(th, 'trace_number_within_the_ensemble', None), + 'offset': getattr(th, 'distance_from_center_of_the_source_point_to_the_center_of_the_receiver_group', None), + 'source_x': getattr(th, 'source_coordinate_x', None), + 'source_y': getattr(th, 'source_coordinate_y', None), + 'group_x': getattr(th, 'group_coordinate_x', None), + 'group_y': getattr(th, 'group_coordinate_y', None), + 'num_samples': getattr(th, 'number_of_samples_in_this_trace', None), + 'sample_interval': getattr(th, 'sample_interval_in_ms_for_this_trace', None), + }) + + return jsonify({ + 'type': 'segy', + 'binary_header': bfh, + 'trace_headers': trace_headers, + 'total_traces': len(segy.traces) + }) + except Exception as e: + return jsonify({'error': f'SEGY header read error: {e}'}), 500 + + return jsonify({'error': 'Unsupported'}), 400 + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//waveform') +def file_waveform(filename): + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + return jsonify({'error': 'Not found'}), 404 + max_pts = int(request.args.get('points', 5000)) + channel = request.args.get('channel', 'calibrated_data/channel_1') + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + if channel not in f: + return jsonify({'error': 'Channel not found'}), 404 + data = f[channel][:] + n = len(data) + if n <= max_pts: + values = data.tolist() + indices = list(range(n)) + else: + step = n // max_pts + indices = list(range(0, n, step))[:max_pts] + values = [float(data[i]) for i in indices] + return jsonify({ + 'name': filename, 'channel': channel, + 'total_samples': n, + 'displayed_points': len(values), + 'min': float(np.min(data)), 'max': float(np.max(data)), + 'mean': float(np.mean(data)), 'std': float(np.std(data)), + 'x': indices, 'y': values + }) + return jsonify({'error': 'Waveform only for H5'}), 400 + except Exception as e: + return jsonify({'error': str(e)}), 500 + + +# ========== GEOSUP ENDPOINTS ========== + +# UTM Zone 31N to WGS84 transformer +utm_to_wgs84 = Transformer.from_crs("EPSG:32631", "EPSG:4326", always_xy=True) + +GEOSUP_DIR = os.path.join(app.static_folder, '') # Static folder + +def parse_sps_line(line): + """Parse SPS S01/R01 format line. Fixed-width format.""" + if len(line) < 65: + return None + try: + record_type = line[0].strip() # S or R + line_num = line[1:11].strip() + point = line[11:21].strip() + index = line[21:23].strip() + # Easting and Northing are in columns ~26-52 + coord_part = line[46:66].strip() + # Parse XXXXXX.XNNNNNNN.NN format + match = re.match(r'(\d{5,6}\.\d{1,2})(\d{7}\.\d{1,2})', coord_part) + if match: + easting = float(match.group(1)) + northing = float(match.group(2)) + else: + parts = coord_part.split('.') + if len(parts) >= 2: + easting_int = parts[0] + rest = '.'.join(parts[1:]) + if len(rest) > 9: + easting = float(easting_int + '.' + rest[:2]) + northing = float(rest[2:]) + else: + return None + else: + return None + + depth = line[66:72].strip() if len(line) > 52 else '0' + depth = float(depth) if depth else 0 + + return { + 'type': record_type, + 'line': line_num, + 'point': point, + 'index': index, + 'easting': easting, + 'northing': northing, + 'depth': depth + } + except Exception: + return None + +def parse_deployment_csv(filepath): + """Parse deployment CSV file (SETE-0965P1002.csv format).""" + records = [] + try: + with open(filepath, 'r') as f: + for line in f: + parts = line.strip().split(',') + if len(parts) >= 8: + try: + record = { + 'line': parts[0], + 'point': parts[1], + 'index': parts[2], + 'name': parts[3], + 'easting': float(parts[5]), + 'northing': float(parts[6]), + 'depth': float(parts[7]), + } + if len(parts) >= 16: + record['year'] = int(parts[10]) + record['day'] = int(parts[11]) + record['hour'] = int(parts[12]) + record['minute'] = int(parts[13]) + record['second'] = int(parts[14]) + records.append(record) + except (ValueError, IndexError): + continue + except Exception: + pass + return records + +@app.route('/api/geosup/positions') +def geosup_positions(): + """Return GeoJSON with source, receiver, and deployment positions.""" + try: + features = [] + + # Parse sources (S01) + s01_path = os.path.join(GEOSUP_DIR, 'SeteSxPreplots.s01') + if os.path.exists(s01_path): + with open(s01_path, 'r') as f: + for line in f: + record = parse_sps_line(line) + if record and record['type'] == 'S': + lon, lat = utm_to_wgs84.transform(record['easting'], record['northing']) + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': { + 'category': 'source', + 'line': record['line'], + 'point': record['point'], + 'easting': record['easting'], + 'northing': record['northing'], + 'depth': record['depth'] + } + }) + + # Parse receivers (R01) + r01_path = os.path.join(GEOSUP_DIR, 'SeteRxPreplots.r01') + if os.path.exists(r01_path): + with open(r01_path, 'r') as f: + for line in f: + record = parse_sps_line(line) + if record and record['type'] == 'R': + lon, lat = utm_to_wgs84.transform(record['easting'], record['northing']) + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': { + 'category': 'receiver', + 'line': record['line'], + 'point': record['point'], + 'easting': record['easting'], + 'northing': record['northing'], + 'depth': record['depth'] + } + }) + + # Parse deployments (CSV) + csv_path = os.path.join(GEOSUP_DIR, 'SETE-0965P1002.csv') + if os.path.exists(csv_path): + deployments = parse_deployment_csv(csv_path) + for d in deployments: + lon, lat = utm_to_wgs84.transform(d['easting'], d['northing']) + props = { + 'category': 'deployment', + 'line': d['line'], + 'point': d['point'], + 'name': d['name'], + 'easting': d['easting'], + 'northing': d['northing'], + 'depth': d['depth'] + } + if 'year' in d: + props['timestamp'] = f"{d['year']}-{d['day']:03d} {d['hour']:02d}:{d['minute']:02d}:{d['second']:02d}" + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': props + }) + + sources = len([f for f in features if f['properties']['category'] == 'source']) + receivers = len([f for f in features if f['properties']['category'] == 'receiver']) + deployments = len([f for f in features if f['properties']['category'] == 'deployment']) + + return jsonify({ + 'type': 'FeatureCollection', + 'features': features, + 'counts': {'sources': sources, 'receivers': receivers, 'deployments': deployments, 'total': len(features)} + }) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/documents') +def geosup_documents(): + """List all geosup documents in static folder.""" + try: + documents = [] + doc_extensions = ('.pdf', '.docx', '.xlsx', '.doc', '.xls') + + for fn in os.listdir(GEOSUP_DIR): + if fn.lower().endswith(doc_extensions): + fp = os.path.join(GEOSUP_DIR, fn) + stat = os.stat(fp) + ext = os.path.splitext(fn)[1].lower() + doc_type = {'.pdf': 'PDF', '.docx': 'Word', '.doc': 'Word', '.xlsx': 'Excel', '.xls': 'Excel'}.get(ext, 'Document') + icon = {'.pdf': '📕', '.docx': '📘', '.doc': '📘', '.xlsx': '📗', '.xls': '📗'}.get(ext, '📄') + is_gundalf = 'GUNDALF' in fn.upper() + is_params = 'Acquisition_Parameters' in fn or 'SpiceRack' in fn + + documents.append({ + 'name': fn, + 'size': stat.st_size, + 'size_human': f"{stat.st_size / 1024:.1f} KB" if stat.st_size < 1048576 else f"{stat.st_size / 1048576:.1f} MB", + 'type': doc_type, + 'icon': icon, + 'is_gundalf': is_gundalf, + 'is_params': is_params, + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat() + }) + + documents.sort(key=lambda d: (not d['is_gundalf'], not d['is_params'], d['name'])) + return jsonify({'documents': documents, 'count': len(documents)}) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/documents/') +def geosup_download(filename): + """Download a geosup document.""" + try: + safe_name = os.path.basename(filename) + filepath = os.path.join(GEOSUP_DIR, safe_name) + if not os.path.exists(filepath): + return jsonify({'error': 'File not found'}), 404 + mime_type, _ = mimetypes.guess_type(filepath) + return send_file(filepath, mimetype=mime_type or 'application/octet-stream', as_attachment=True, download_name=safe_name) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/acquisition-params') +def geosup_acquisition_params(): + """Extract key parameters from the acquisition spreadsheet.""" + try: + xlsx_path = os.path.join(GEOSUP_DIR, 'SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx') + if not os.path.exists(xlsx_path): + return jsonify({'error': 'Acquisition parameters file not found'}), 404 + from openpyxl import load_workbook + wb = load_workbook(xlsx_path, data_only=True) + params = {'sheets': [], 'summary': {}} + for sheet_name in wb.sheetnames: + ws = wb[sheet_name] + sheet_data = {'name': sheet_name, 'rows': []} + row_count = 0 + for row in ws.iter_rows(max_row=30, values_only=True): + if any(cell is not None for cell in row): + sheet_data['rows'].append([str(cell) if cell is not None else '' for cell in row[:10]]) + row_count += 1 + if row_count >= 20: + break + params['sheets'].append(sheet_data) + wb.close() + return jsonify(params) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +@app.route('/api/pipeline-status') +def pipeline_status(): + """Return pipeline statistics and disk usage.""" + try: + raw_dir = '/mnt/usb/Recordings' + output_dir = '/mnt/usb/H5-Output' + + # Count files + raw_count = 0 + if os.path.exists(raw_dir): + raw_count = len([n for n in os.listdir(raw_dir) if n.lower().endswith(('.raw', '.manta'))]) + + segy_count = 0 + h5_count = 0 + if os.path.exists(output_dir): + files = os.listdir(output_dir) + segy_count = len([n for n in files if n.lower().endswith(('.segy', '.sgy'))]) + h5_count = len([n for n in files if n.lower().endswith('.h5')]) + + # Disk usage + total, used, free = shutil.disk_usage(output_dir) + + # Conversion progress + progress = None + if os.path.exists('/tmp/segy2h5_progress.json'): + try: + with open('/tmp/segy2h5_progress.json', 'r') as f: + progress = json.load(f) + except: + pass + + return jsonify({ + 'counts': { + 'raw': raw_count, + 'segy': segy_count, + 'h5': h5_count, + 'total_expected': 345 # Hardcoded target from context + }, + 'disk': { + 'total_gb': round(total / (1024**3), 2), + 'used_gb': round(used / (1024**3), 2), + 'free_gb': round(free / (1024**3), 2), + 'percent': round((used / total) * 100, 1) + }, + 'progress': progress + }) + except Exception as e: + traceback.print_exc() + return jsonify({'error': str(e)}), 500 + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=3001, debug=False) + +@app.route('/test-map') +def test_map(): + return send_from_directory('static', 'test-map.html') diff --git a/app.py.v3 b/app.py.v3 new file mode 100644 index 0000000..30f2867 --- /dev/null +++ b/app.py.v3 @@ -0,0 +1,1627 @@ +from flask import Flask, jsonify, send_from_directory, request, send_file +from flask_cors import CORS +import os +import re +import h5py +import numpy as np +from datetime import datetime, timedelta +import base64 +import struct +import traceback +import json +import io +import mimetypes +from pyproj import Transformer +import shutil + +app = Flask(__name__, static_folder='static', static_url_path='') +CORS(app) + +DATA_DIR = os.environ.get('DATA_DIR', '/data') +LOCATIONS_FILE = '/home/floppyrj45/seismic-viewer/locations.json' +DARF_FILE = os.path.join(os.path.dirname(__file__), 'static', 'darf_nodes.json') + +# ========== UTILITY FUNCTIONS ========== + +def load_darf_nodes(): + """Load DARF node metadata from JSON file.""" + try: + with open(DARF_FILE, 'r') as f: + return json.load(f) + except Exception: + return {} + +def extract_board_id(filename): + """Extract board_id from filename pattern: auto_XXX_HHMMSS_b{BOARD_ID}_rsnXXX_...""" + m = re.search(r'_b(\d+)_', filename) + return m.group(1) if m else None + +def load_locations(): + """Load locations from JSON file.""" + if os.path.exists(LOCATIONS_FILE): + try: + with open(LOCATIONS_FILE, 'r') as f: + return json.load(f) + except: + return {} + return {} + +def save_locations(locations): + """Save locations to JSON file.""" + with open(LOCATIONS_FILE, 'w') as f: + json.dump(locations, f, indent=2) + +def get_h5_metadata(filepath): + """Extract comprehensive metadata from H5 file.""" + metadata = {} + try: + with h5py.File(filepath, 'r') as f: + # File-level attributes + for k, v in f.attrs.items(): + try: + metadata[k] = v.item() if hasattr(v, 'item') else str(v) + except: + metadata[k] = str(v) + + # Metadata group attributes + if 'metadata' in f: + for k, v in f['metadata'].attrs.items(): + try: + metadata[k] = v.item() if hasattr(v, 'item') else str(v) + except: + metadata[k] = str(v) + + # Calibration group attributes + if 'calibration' in f: + calibration = {} + for k, v in f['calibration'].attrs.items(): + try: + calibration[k] = v.item() if hasattr(v, 'item') else str(v) + except: + calibration[k] = str(v) + metadata['calibration'] = calibration + + # Channel information + channels = [] + for group_name in ['calibrated_data', 'raw_data']: + if group_name in f: + for ds_name in f[group_name].keys(): + ds = f[group_name][ds_name] + ch_info = { + 'name': f"{group_name}/{ds_name}", + 'shape': list(ds.shape), + 'dtype': str(ds.dtype), + 'samples': int(ds.shape[0]) if len(ds.shape) > 0 else 0 + } + for k, v in ds.attrs.items(): + try: + ch_info[k] = v.item() if hasattr(v, 'item') else str(v) + except: + ch_info[k] = str(v) + channels.append(ch_info) + metadata['channels'] = channels + + # Compute timestamps + if 'creation_date' in metadata: + try: + start_time = datetime.fromisoformat(metadata['creation_date'].replace('Z', '+00:00')) + metadata['start_timestamp'] = start_time.isoformat() + + if 'duration_sec' in metadata: + duration_sec = float(metadata['duration_sec']) + end_time = start_time + timedelta(seconds=duration_sec) + metadata['end_timestamp'] = end_time.isoformat() + + # Human-readable duration + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + seconds = int(duration_sec % 60) + metadata['duration_human'] = f"{hours}h {minutes}m {seconds}s" + except Exception as e: + metadata['timestamp_error'] = str(e) + + return metadata + except Exception as e: + return {'error': str(e)} + +# ========== ROUTES ========== + +@app.route('/') +def index(): + return send_from_directory('static', 'index.html') + +@app.route('/api/files') +def list_files(): + try: + files = [] + for fn in os.listdir(DATA_DIR): + if fn.endswith(('.segy', '.sgy', '.h5')): + fp = os.path.join(DATA_DIR, fn) + stat = os.stat(fp) + ftype = 'h5' if fn.endswith('.h5') else 'segy' + files.append({ + 'name': fn, 'size': stat.st_size, + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + 'type': ftype + }) + files.sort(key=lambda x: x['name']) + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'files': files, 'count': len(files)}) + except Exception as e: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//info') +def file_info(filename): + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Not found'}), 404 + stat = os.stat(fp) + info = { + 'name': filename, + 'size': stat.st_size, + 'size_mb': round(stat.st_size / 1048576, 2), + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + 'type': 'h5' if filename.endswith('.h5') else 'segy', + } + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + datasets = [] + def visitor(name, obj): + if isinstance(obj, h5py.Dataset): + datasets.append({ + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'samples': int(obj.shape[0]) if len(obj.shape) > 0 else 0 + }) + f.visititems(visitor) + info['datasets'] = datasets + info['num_datasets'] = len(datasets) + cal = [d for d in datasets if 'calibrated' in d['path']] + raw = [d for d in datasets if 'raw' in d['path']] + info['calibrated_channels'] = len(cal) + info['raw_channels'] = len(raw) + if cal: + info['samples_per_channel'] = cal[0]['samples'] + + # Add sample rate and duration for sidebar display + if 'metadata' in f: + sample_rate = f['metadata'].attrs.get('sample_rate_hz', None) + if sample_rate and cal: + total_samples = cal[0]['samples'] + duration_sec = float(total_samples) / float(sample_rate) + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + info['duration_human'] = f"{hours}h{minutes:02d}m" + info['sample_rate_hz'] = int(sample_rate) + info['num_channels'] = int(len(cal)) + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp, headonly=True) + info['num_traces'] = len(st) + if len(st) > 0: + info['samples_per_trace'] = st[0].stats.npts + info['sample_rate'] = st[0].stats.sampling_rate + info['delta'] = st[0].stats.delta + except Exception as e: + info['segy_error'] = str(e) + return jsonify(info) + except Exception as e: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +# ========== NEW: METADATA ENDPOINT ========== + +@app.route('/api/file//metadata') +def file_metadata(filename): + """Return detailed metadata for a file.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Not found'}), 404 + + stat = os.stat(fp) + result = { + 'filename': filename, + 'file_size_bytes': stat.st_size, + 'file_size_mb': round(stat.st_size / 1048576, 2), + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat(), + } + + if filename.endswith('.h5'): + metadata = get_h5_metadata(fp) + result.update(metadata) + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp, headonly=True) + result['num_traces'] = len(st) + if len(st) > 0: + result['sample_rate'] = st[0].stats.sampling_rate + result['samples_per_trace'] = st[0].stats.npts + result['start_timestamp'] = st[0].stats.starttime.isoformat() + result['end_timestamp'] = st[0].stats.endtime.isoformat() + duration_sec = (st[0].stats.endtime - st[0].stats.starttime) + hours = int(duration_sec // 3600) + minutes = int((duration_sec % 3600) // 60) + seconds = int(duration_sec % 60) + result['duration_human'] = f"{hours}h {minutes}m {seconds}s" + result['duration_sec'] = duration_sec + except Exception as e: + result['segy_error'] = str(e) + + return jsonify(result) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +# ========== NEW: LOCATIONS ENDPOINT ========== + +@app.route('/api/locations', methods=['GET']) +def get_locations(): + """Get all file locations.""" + try: + locations = load_locations() + return jsonify(locations) + except Exception as e: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/locations', methods=['POST']) +def update_location(): + """Update location for a file.""" + try: + data = request.json + filename = data.get('filename') + lat = data.get('lat') + lon = data.get('lon') + + if not all([filename, lat is not None, lon is not None]): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Missing filename, lat, or lon'}), 400 + + locations = load_locations() + locations[filename] = { + 'lat': float(lat), + 'lon': float(lon), + 'updated': datetime.now().isoformat() + } + save_locations(locations) + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'success': True, 'locations': locations}) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +# ========== NEW: EXTRACT ENDPOINT ========== + +@app.route('/api/file//extract') +def extract_segment(filename): + """Extract a time segment from a file and return as CSV or H5.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Not found'}), 404 + + # Parameters + start_sec = float(request.args.get('start_sec', 0)) + duration_sec = float(request.args.get('duration_sec', 1200)) # Default 20 min + channel = request.args.get('channel', 'calibrated_data/channel_1') + format_type = request.args.get('format', 'csv') # csv or h5 + + if not filename.endswith('.h5'): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Extract only supported for H5 files'}), 400 + + with h5py.File(fp, 'r') as f: + if channel not in f: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': f'Channel {channel} not found'}), 404 + + # Get metadata + sample_rate = f['metadata'].attrs.get('sample_rate_hz', 500) + total_samples = f[channel].shape[0] + + # Calculate sample range + start_sample = int(start_sec * sample_rate) + end_sample = int((start_sec + duration_sec) * sample_rate) + + # Clamp to valid range + start_sample = max(0, min(start_sample, total_samples - 1)) + end_sample = max(start_sample + 1, min(end_sample, total_samples)) + + # Extract data + data = f[channel][start_sample:end_sample] + + if format_type == 'csv': + # Generate CSV + output = io.StringIO() + output.write(f"# Channel: {channel}\n") + output.write(f"# Start: {start_sec}s, Duration: {duration_sec}s\n") + output.write(f"# Sample rate: {sample_rate} Hz\n") + output.write(f"# Samples: {len(data)}\n") + output.write("sample,time_sec,value\n") + + for i, val in enumerate(data): + time_s = (start_sample + i) / sample_rate + output.write(f"{start_sample + i},{time_s:.6f},{val}\n") + + output.seek(0) + return send_file( + io.BytesIO(output.getvalue().encode('utf-8')), + mimetype='text/csv', + as_attachment=True, + download_name=f'{filename.replace(".h5", "")}_extract_{int(start_sec)}_{int(duration_sec)}s.csv' + ) + + elif format_type == 'h5': + # Generate H5 + output = io.BytesIO() + with h5py.File(output, 'w') as out_f: + # Copy metadata + if 'metadata' in f: + meta_group = out_f.create_group('metadata') + for k, v in f['metadata'].attrs.items(): + meta_group.attrs[k] = v + meta_group.attrs['extract_start_sec'] = start_sec + meta_group.attrs['extract_duration_sec'] = duration_sec + meta_group.attrs['extract_start_sample'] = start_sample + meta_group.attrs['extract_end_sample'] = end_sample + + # Create dataset + ds = out_f.create_dataset('data', data=data, compression='gzip') + ds.attrs['channel'] = channel + ds.attrs['sample_rate_hz'] = sample_rate + + # Copy channel attributes + if channel in f: + for k, v in f[channel].attrs.items(): + ds.attrs[k] = v + + output.seek(0) + return send_file( + output, + mimetype='application/x-hdf5', + as_attachment=True, + download_name=f'{filename.replace(".h5", "")}_extract_{int(start_sec)}_{int(duration_sec)}s.h5' + ) + + else: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Invalid format. Use csv or h5'}), 400 + + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +# ========== EXISTING ENDPOINTS (kept for compatibility) ========== + +@app.route('/api/file//section') +def file_section(filename): + """Return 2D section data as base64 float32 array.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Not found'}), 404 + + trace_start = int(request.args.get('trace_start', 0)) + trace_count = int(request.args.get('trace_count', 200)) + samples_per_trace = min(int(request.args.get("samples_per_trace", 1000)), 50000) + channel = request.args.get('channel', 'calibrated_data/channel_1') + max_samples = int(request.args.get('max_samples', 500)) + + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + if channel not in f: + avail = [] + f.visititems(lambda n, o: avail.append(n) if isinstance(o, h5py.Dataset) else None) + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': f'Channel not found', 'available': avail}), 404 + + data = f[channel] + total_samples = data.shape[0] + total_traces = total_samples // samples_per_trace + + trace_start = max(0, min(trace_start, max(0, total_traces - 1))) + trace_end = min(trace_start + trace_count, total_traces) + actual_count = trace_end - trace_start + + if actual_count <= 0: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'No traces in range'}), 400 + + start_sample = trace_start * samples_per_trace + end_sample = trace_end * samples_per_trace + raw = data[start_sample:end_sample] + + section = raw.reshape(actual_count, samples_per_trace).astype(np.float32) + + if samples_per_trace > max_samples: + factor = samples_per_trace // max_samples + trimmed = section[:, :factor * max_samples] + section = trimmed.reshape(actual_count, max_samples, factor).mean(axis=2).astype(np.float32) + actual_spt = max_samples + else: + actual_spt = samples_per_trace + + vmin = float(np.min(section)) + vmax = float(np.max(section)) + encoded = base64.b64encode(section.tobytes()).decode('ascii') + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'num_traces': int(actual_count), + 'samples_per_trace': actual_spt, + 'trace_start': trace_start, + 'total_traces': total_traces, + 'total_samples': int(total_samples), + 'vmin': vmin, 'vmax': vmax, + 'data_b64': encoded, + 'dtype': 'float32' + }) + + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + st = obspy_read(fp) + total_traces = len(st) + + trace_start = max(0, min(trace_start, total_traces - 1)) + trace_end = min(trace_start + trace_count, total_traces) + actual_count = trace_end - trace_start + + if actual_count <= 0: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'No traces'}), 400 + + spt = st[0].stats.npts + actual_spt = spt + + section = np.zeros((actual_count, spt), dtype=np.float32) + for i in range(actual_count): + tr = st[trace_start + i] + n = min(spt, tr.stats.npts) + section[i, :n] = tr.data[:n].astype(np.float32) + + if spt > max_samples: + factor = spt // max_samples + trimmed = section[:, :factor * max_samples] + section = trimmed.reshape(actual_count, max_samples, factor).mean(axis=2).astype(np.float32) + actual_spt = max_samples + + vmin = float(np.min(section)) + vmax = float(np.max(section)) + encoded = base64.b64encode(section.tobytes()).decode('ascii') + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'num_traces': int(actual_count), + 'samples_per_trace': actual_spt, + 'trace_start': trace_start, + 'total_traces': total_traces, + 'total_samples': int(total_traces * spt), + 'vmin': vmin, 'vmax': vmax, + 'data_b64': encoded, + 'dtype': 'float32' + }) + except Exception as e: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': f'SEGY read error: {e}'}), 500 + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Unsupported format'}), 400 + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//headers') +def file_headers(filename): + """Return trace headers for SEGY or dataset attributes for H5.""" + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Not found'}), 404 + + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + attrs = {} + for k, v in f.attrs.items(): + try: + attrs[k] = v.item() if hasattr(v, 'item') else str(v) + except: + attrs[k] = str(v) + + datasets = [] + def visitor(name, obj): + if isinstance(obj, h5py.Dataset): + ds_info = { + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'size': int(np.prod(obj.shape)), + } + for ak, av in obj.attrs.items(): + try: + ds_info[f'attr:{ak}'] = av.item() if hasattr(av, 'item') else str(av) + except: + ds_info[f'attr:{ak}'] = str(av) + datasets.append(ds_info) + f.visititems(visitor) + + groups = [] + def gvisitor(name, obj): + if isinstance(obj, h5py.Group): + g_info = {'path': name} + for ak, av in obj.attrs.items(): + try: + g_info[f'attr:{ak}'] = av.item() if hasattr(av, 'item') else str(av) + except: + g_info[f'attr:{ak}'] = str(av) + if len(g_info) > 1: + groups.append(g_info) + f.visititems(gvisitor) + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'type': 'h5', + 'file_attrs': attrs, + 'datasets': datasets, + 'groups': groups + }) + + elif filename.endswith(('.segy', '.sgy')): + try: + from obspy import read as obspy_read + from obspy.io.segy.segy import _read_segy + + segy = _read_segy(fp) + + bfh = {} + if hasattr(segy, 'binary_file_header'): + h = segy.binary_file_header + for attr in ['job_identification_number', 'line_number', 'reel_number', + 'number_of_data_traces_per_ensemble', 'number_of_auxiliary_traces_per_ensemble', + 'sample_interval_in_microseconds', 'number_of_samples_per_data_trace', + 'data_sample_format_code']: + if hasattr(h, attr): + bfh[attr] = getattr(h, attr) + + trace_headers = [] + max_traces = min(50, len(segy.traces)) + for i in range(max_traces): + th = segy.traces[i].header + trace_headers.append({ + 'trace': i, + 'inline': getattr(th, 'trace_sequence_number_within_line', None), + 'crossline': getattr(th, 'trace_sequence_number_within_segy_file', None), + 'field_record': getattr(th, 'original_field_record_number', None), + 'trace_number': getattr(th, 'trace_number_within_the_original_field_record', None), + 'cdp': getattr(th, 'ensemble_number', None), + 'trace_in_ensemble': getattr(th, 'trace_number_within_the_ensemble', None), + 'offset': getattr(th, 'distance_from_center_of_the_source_point_to_the_center_of_the_receiver_group', None), + 'source_x': getattr(th, 'source_coordinate_x', None), + 'source_y': getattr(th, 'source_coordinate_y', None), + 'group_x': getattr(th, 'group_coordinate_x', None), + 'group_y': getattr(th, 'group_coordinate_y', None), + 'num_samples': getattr(th, 'number_of_samples_in_this_trace', None), + 'sample_interval': getattr(th, 'sample_interval_in_ms_for_this_trace', None), + }) + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'type': 'segy', + 'binary_header': bfh, + 'trace_headers': trace_headers, + 'total_traces': len(segy.traces) + }) + except Exception as e: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': f'SEGY header read error: {e}'}), 500 + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Unsupported'}), 400 + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/file//waveform') +def file_waveform(filename): + try: + fp = os.path.join(DATA_DIR, filename) + if not os.path.exists(fp): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Not found'}), 404 + max_pts = int(request.args.get('points', 5000)) + channels_param = request.args.get('channels', '') + channel = request.args.get('channel', 'calibrated_data/channel_1') + start_sec = request.args.get('start', None) + duration_sec = request.args.get('duration', None) + if filename.endswith('.h5'): + with h5py.File(fp, 'r') as f: + # Determine sample rate from file metadata + sample_rate = 500 + if 'sample_rate' in f.attrs: + sample_rate = float(f.attrs['sample_rate']) + elif 'acquisition' in f and 'sample_rate' in f['acquisition'].attrs: + sample_rate = float(f['acquisition'].attrs['sample_rate']) + + # Multi-channel mode + if channels_param: + ch_list = [c.strip() for c in channels_param.split(',') if c.strip()] + else: + ch_list = [channel] + + # Validate all channels exist + for ch in ch_list: + if ch not in f: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': f'Channel not found: {ch}'}), 404 + + total_samples = f[ch_list[0]].shape[0] + + # Compute sample window from start/duration + if start_sec is not None: + s0 = max(0, int(float(start_sec) * sample_rate)) + else: + s0 = 0 + if duration_sec is not None: + s1 = min(total_samples, s0 + int(float(duration_sec) * sample_rate)) + else: + s1 = total_samples + + result = { + 'name': filename, + 'sample_rate': int(sample_rate), + 'total_samples': total_samples, + 'channels': {} + } + + for ch in ch_list: + data = f[ch][s0:s1] + n = len(data) + # Downsample if needed + if n <= max_pts: + indices = list(range(s0, s0 + n)) + values = data.tolist() + else: + step = n // max_pts + indices = list(range(s0, s0 + n, step))[:max_pts] + values = [float(data[i - s0]) for i in indices] + # Convert indices to time in seconds + times = [i / sample_rate for i in indices] + result['channels'][ch] = { + 'channel': ch, + 'displayed_points': len(values), + 'min': float(np.min(data)), + 'max': float(np.max(data)), + 'mean': float(np.mean(data)), + 'std': float(np.std(data)), + 'x': times, + 'y': values + } + + # Backward compat: if single channel, also put x/y at top level + if len(ch_list) == 1: + ch_data = result['channels'][ch_list[0]] + result['channel'] = ch_list[0] + result['displayed_points'] = ch_data['displayed_points'] + result['min'] = ch_data['min'] + result['max'] = ch_data['max'] + result['mean'] = ch_data['mean'] + result['std'] = ch_data['std'] + result['x'] = ch_data['x'] + result['y'] = ch_data['y'] + + return jsonify(result) + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Waveform only for H5'}), 400 + except Exception as e: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + + +# ========== GEOSUP ENDPOINTS ========== + +# UTM Zone 31N to WGS84 transformer +utm_to_wgs84 = Transformer.from_crs("EPSG:32631", "EPSG:4326", always_xy=True) + +GEOSUP_DIR = os.path.join(app.static_folder, '') # Static folder + +def parse_sps_line(line): + """Parse SPS S01/R01 format line. Fixed-width format.""" + if len(line) < 65: + return None + try: + record_type = line[0].strip() # S or R + line_num = line[1:11].strip() + point = line[11:21].strip() + index = line[21:23].strip() + # Easting and Northing are in columns ~26-52 + coord_part = line[46:66].strip() + # Parse XXXXXX.XNNNNNNN.NN format + match = re.match(r'(\d{5,6}\.\d{1,2})(\d{7}\.\d{1,2})', coord_part) + if match: + easting = float(match.group(1)) + northing = float(match.group(2)) + else: + parts = coord_part.split('.') + if len(parts) >= 2: + easting_int = parts[0] + rest = '.'.join(parts[1:]) + if len(rest) > 9: + easting = float(easting_int + '.' + rest[:2]) + northing = float(rest[2:]) + else: + return None + else: + return None + + depth = line[66:72].strip() if len(line) > 52 else '0' + depth = float(depth) if depth else 0 + + return { + 'type': record_type, + 'line': line_num, + 'point': point, + 'index': index, + 'easting': easting, + 'northing': northing, + 'depth': depth + } + except Exception: + return None + +def parse_deployment_csv(filepath): + """Parse deployment CSV file (SETE-0965P1002.csv format).""" + records = [] + try: + with open(filepath, 'r') as f: + for line in f: + parts = line.strip().split(',') + if len(parts) >= 8: + try: + record = { + 'line': parts[0], + 'point': parts[1], + 'index': parts[2], + 'name': parts[3], + 'easting': float(parts[5]), + 'northing': float(parts[6]), + 'depth': float(parts[7]), + } + if len(parts) >= 16: + record['year'] = int(parts[10]) + record['day'] = int(parts[11]) + record['hour'] = int(parts[12]) + record['minute'] = int(parts[13]) + record['second'] = int(parts[14]) + records.append(record) + except (ValueError, IndexError): + continue + except Exception: + pass + return records + +@app.route('/api/geosup/positions') +def geosup_positions(): + """Return GeoJSON with source, receiver, and deployment positions.""" + try: + features = [] + + # Parse sources (S01) + s01_path = os.path.join(GEOSUP_DIR, 'SeteSxPreplots.s01') + if os.path.exists(s01_path): + with open(s01_path, 'r') as f: + for line in f: + record = parse_sps_line(line) + if record and record['type'] == 'S': + lon, lat = utm_to_wgs84.transform(record['easting'], record['northing']) + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': { + 'category': 'source', + 'line': record['line'], + 'point': record['point'], + 'easting': record['easting'], + 'northing': record['northing'], + 'depth': record['depth'] + } + }) + + # Parse receivers (R01) + r01_path = os.path.join(GEOSUP_DIR, 'SeteRxPreplots.r01') + if os.path.exists(r01_path): + with open(r01_path, 'r') as f: + for line in f: + record = parse_sps_line(line) + if record and record['type'] == 'R': + lon, lat = utm_to_wgs84.transform(record['easting'], record['northing']) + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': { + 'category': 'receiver', + 'line': record['line'], + 'point': record['point'], + 'easting': record['easting'], + 'northing': record['northing'], + 'depth': record['depth'] + } + }) + + # Parse deployments (CSV) + csv_path = os.path.join(GEOSUP_DIR, 'SETE-0965P1002.csv') + if os.path.exists(csv_path): + deployments = parse_deployment_csv(csv_path) + for d in deployments: + lon, lat = utm_to_wgs84.transform(d['easting'], d['northing']) + props = { + 'category': 'deployment', + 'line': d['line'], + 'point': d['point'], + 'name': d['name'], + 'easting': d['easting'], + 'northing': d['northing'], + 'depth': d['depth'] + } + if 'year' in d: + props['timestamp'] = f"{d['year']}-{d['day']:03d} {d['hour']:02d}:{d['minute']:02d}:{d['second']:02d}" + features.append({ + 'type': 'Feature', + 'geometry': {'type': 'Point', 'coordinates': [lon, lat]}, + 'properties': props + }) + + sources = len([f for f in features if f['properties']['category'] == 'source']) + receivers = len([f for f in features if f['properties']['category'] == 'receiver']) + deployments = len([f for f in features if f['properties']['category'] == 'deployment']) + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'type': 'FeatureCollection', + 'features': features, + 'counts': {'sources': sources, 'receivers': receivers, 'deployments': deployments, 'total': len(features)} + }) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/documents') +def geosup_documents(): + """List all geosup documents in static folder.""" + try: + documents = [] + doc_extensions = ('.pdf', '.docx', '.xlsx', '.doc', '.xls') + + for fn in os.listdir(GEOSUP_DIR): + if fn.lower().endswith(doc_extensions): + fp = os.path.join(GEOSUP_DIR, fn) + stat = os.stat(fp) + ext = os.path.splitext(fn)[1].lower() + doc_type = {'.pdf': 'PDF', '.docx': 'Word', '.doc': 'Word', '.xlsx': 'Excel', '.xls': 'Excel'}.get(ext, 'Document') + icon = {'.pdf': '📕', '.docx': '📘', '.doc': '📘', '.xlsx': '📗', '.xls': '📗'}.get(ext, '📄') + is_gundalf = 'GUNDALF' in fn.upper() + is_params = 'Acquisition_Parameters' in fn or 'SpiceRack' in fn + + documents.append({ + 'name': fn, + 'size': stat.st_size, + 'size_human': f"{stat.st_size / 1024:.1f} KB" if stat.st_size < 1048576 else f"{stat.st_size / 1048576:.1f} MB", + 'type': doc_type, + 'icon': icon, + 'is_gundalf': is_gundalf, + 'is_params': is_params, + 'modified': datetime.fromtimestamp(stat.st_mtime).isoformat() + }) + + documents.sort(key=lambda d: (not d['is_gundalf'], not d['is_params'], d['name'])) + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'documents': documents, 'count': len(documents)}) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/documents/') +def geosup_download(filename): + """Download a geosup document.""" + try: + safe_name = os.path.basename(filename) + filepath = os.path.join(GEOSUP_DIR, safe_name) + if not os.path.exists(filepath): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'File not found'}), 404 + mime_type, _ = mimetypes.guess_type(filepath) + return send_file(filepath, mimetype=mime_type or 'application/octet-stream', as_attachment=True, download_name=safe_name) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/geosup/acquisition-params') +def geosup_acquisition_params(): + """Extract key parameters from the acquisition spreadsheet.""" + try: + xlsx_path = os.path.join(GEOSUP_DIR, 'SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx') + if not os.path.exists(xlsx_path): + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'Acquisition parameters file not found'}), 404 + from openpyxl import load_workbook + wb = load_workbook(xlsx_path, data_only=True) + params = {'sheets': [], 'summary': {}} + for sheet_name in wb.sheetnames: + ws = wb[sheet_name] + sheet_data = {'name': sheet_name, 'rows': []} + row_count = 0 + for row in ws.iter_rows(max_row=30, values_only=True): + if any(cell is not None for cell in row): + sheet_data['rows'].append([str(cell) if cell is not None else '' for cell in row[:10]]) + row_count += 1 + if row_count >= 20: + break + params['sheets'].append(sheet_data) + wb.close() + return jsonify(params) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +@app.route('/api/pipeline-status') +def pipeline_status(): + """Return pipeline statistics and disk usage.""" + try: + raw_dir = '/mnt/usb/Recordings' + output_dir = '/mnt/usb/H5-Output' + + # Count files + raw_count = 0 + if os.path.exists(raw_dir): + raw_count = len([n for n in os.listdir(raw_dir) if n.lower().endswith(('.raw', '.manta'))]) + + segy_count = 0 + h5_count = 0 + if os.path.exists(output_dir): + files = os.listdir(output_dir) + segy_count = len([n for n in files if n.lower().endswith(('.segy', '.sgy'))]) + h5_count = len([n for n in files if n.lower().endswith('.h5')]) + + # Disk usage + total, used, free = shutil.disk_usage(output_dir) + + # Conversion progress + progress = None + if os.path.exists('/tmp/segy2h5_progress.json'): + try: + with open('/tmp/segy2h5_progress.json', 'r') as f: + progress = json.load(f) + except: + pass + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'counts': { + 'raw': raw_count, + 'segy': segy_count, + 'h5': h5_count, + 'total_expected': 345 # Hardcoded target from context + }, + 'disk': { + 'total_gb': round(total / (1024**3), 2), + 'used_gb': round(used / (1024**3), 2), + 'free_gb': round(free / (1024**3), 2), + 'percent': round((used / total) * 100, 1) + }, + 'progress': progress + }) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +# ========== GATHER ENDPOINT ========== + +@app.route('/api/gather') +def gather(): + """Return multi-file trace data for gather view.""" + try: + files_param = request.args.get('files', '') + channel = request.args.get('channel', 'calibrated_data/channel_1') + start = float(request.args.get('start', 0)) + duration = float(request.args.get('duration', 60)) + points = int(request.args.get('points', 2000)) + + filenames = [f.strip() for f in files_param.split(',') if f.strip()] + if not filenames: + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': 'No files specified'}), 400 + + traces = [] + time_axis = None + sample_rate = None + + for fn in filenames: + fp = os.path.join(DATA_DIR, fn) + if not os.path.exists(fp) or not fn.endswith('.h5'): + continue + + board_id = extract_board_id(fn) + + try: + with h5py.File(fp, 'r') as f: + if channel not in f: + continue + + sr = 500 + if 'metadata' in f: + sr = int(f['metadata'].attrs.get('sample_rate_hz', 500)) + + if sample_rate is None: + sample_rate = sr + + total_samples = f[channel].shape[0] + start_sample = max(0, int(start * sr)) + end_sample = min(int((start + duration) * sr), total_samples) + + if end_sample <= start_sample: + continue + + data = f[channel][start_sample:end_sample] + n = len(data) + + if n > points: + step = n // points + indices = list(range(0, n, step))[:points] + values = [float(data[i]) for i in indices] + else: + values = [float(v) for v in data] + indices = list(range(n)) + + traces.append({ + 'filename': fn, + 'board_id': board_id, + 'y': values, + 'min': float(np.min(data)), + 'max': float(np.max(data)) + }) + + if time_axis is None: + time_axis = [start + i / sr for i in indices] + + except Exception as e: + traceback.print_exc() + continue + + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({ + 'traces': traces, + 'sample_rate': sample_rate or 500, + 'time_axis': time_axis or [], 'file_duration': max_dur + }) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +# ========== COVERAGE ENDPOINT ========== + +@app.route('/api/coverage') +def coverage(): + """Return coverage metadata for all H5 files.""" + try: + darf = load_darf_nodes() + results = [] + + for fn in os.listdir(DATA_DIR): + if not fn.endswith('.h5'): + continue + + fp = os.path.join(DATA_DIR, fn) + board_id = extract_board_id(fn) + node = darf.get(board_id, {}) if board_id else {} + + info = { + 'filename': fn, + 'board_id': board_id, + 'line': node.get('line'), + 'point': node.get('point'), + 'preplot_e': node.get('preplot_e'), + 'preplot_n': node.get('preplot_n'), + 'duration_sec': 0, + 'date_str': '', + } + + try: + with h5py.File(fp, 'r') as f: + if 'metadata' in f: + sr = float(f['metadata'].attrs.get('sample_rate_hz', 500)) + creation_date = f['metadata'].attrs.get('creation_date', '') + if isinstance(creation_date, bytes): + creation_date = creation_date.decode() + info['date_str'] = str(creation_date) + + for ds_name in ['calibrated_data/channel_1']: + if ds_name in f: + total_samples = f[ds_name].shape[0] + info['duration_sec'] = round(total_samples / sr, 2) + break + + duration_sec = f['metadata'].attrs.get('duration_sec', None) + if duration_sec is not None and info['duration_sec'] == 0: + info['duration_sec'] = round(float(duration_sec), 2) + except Exception: + traceback.print_exc() + + results.append(info) + + results.sort(key=lambda x: (x.get('line') or 0, x.get('point') or 0, x.get('filename', ''))) + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'files': results, 'count': len(results)}) + except Exception as e: + traceback.print_exc() + max_dur = 0 + for fn in filenames: + fp2 = os.path.join(DATA_DIR, fn) + try: + with h5py.File(fp2, 'r') as f2: + sr2 = int(f2.get('metadata', {}).attrs.get('sample_rate_hz', 500)) if 'metadata' in f2 else 500 + ch = list(f2.get('calibrated_data', {}).keys()) + if ch: + max_dur = max(max_dur, f2['calibrated_data'][ch[0]].shape[0] / sr2) + except: pass + return jsonify({'error': str(e)}), 500 + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=3001, debug=False) + +@app.route('/test-map') +def test_map(): + return send_from_directory('static', 'test-map.html') diff --git a/backend_src/index.ts b/backend_src/index.ts new file mode 100644 index 0000000..9641414 --- /dev/null +++ b/backend_src/index.ts @@ -0,0 +1,250 @@ +import express from 'express'; +import cors from 'cors'; +import { readFileSync, existsSync, mkdirSync, readdirSync } from 'fs'; +import { join } from 'path'; +import { spawn } from 'child_process'; +import { Pool } from 'pg'; + +const app = express(); +const PORT = 3001; + +app.use(cors()); +app.use(express.json()); + +const pool = new Pool({ + connectionString: process.env.DATABASE_URL || 'postgresql://postgres:seismic_pass@db:5432/seismic_data' +}); + +const INDEX_PATH = '/mnt/kingston/seismic_webapp/data/index.json'; +const EXPORT_DIR = '/mnt/kingston/seismic_webapp/exports'; +if (!existsSync(EXPORT_DIR)) mkdirSync(EXPORT_DIR, { recursive: true }); + +// GET /api/migration-status - Renvoie l'état de la migration en cours +app.get('/api/migration-status', async (req, res) => { + try { + const result = await pool.query('SELECT total_files, processed_files, current_file FROM migration_status WHERE id = 1'); + if (result.rows.length > 0) { + res.json(result.rows[0]); + } else { + res.status(404).json({ error: 'Status not found' }); + } + } catch (err) { + res.status(500).json({ error: 'DB Error' }); + } +}); + +app.get('/api/nodes', (req, res) => { + try { + const index = JSON.parse(readFileSync(INDEX_PATH, 'utf-8')); + const nodes = Object.values(index?.nodes || {}).map((n: any) => ({ + id: n.id, position: n.position, hasDates: n.files && n.files.length > 0 + })); + res.json({ nodes }); + } catch (e) { res.status(500).json({ error: 'Index read error' }); } +}); + +app.get('/api/dates', (req, res) => { + try { + const index = JSON.parse(readFileSync(INDEX_PATH, 'utf-8')); + res.json({ dates: index?.dates || [] }); + } catch (e) { res.json({ dates: [] }); } +}); + +app.get('/api/rms-timeline', (req, res) => { + const { date, channel } = req.query; + const cachePath = `/mnt/kingston/seismic_webapp/data/rms_cache/rms_${date}_${channel}.json`; + if (existsSync(cachePath)) res.json(JSON.parse(readFileSync(cachePath, 'utf-8'))); + else res.json({ nodes: {} }); +}); + +app.get('/api/global-history', (req, res) => { + const { channel } = req.query; + const dir = '/mnt/kingston/seismic_webapp/data/rms_cache'; + const nodes: Record = {}; + try { + if (existsSync(dir)) { + readdirSync(dir).filter((f:string) => f.endsWith(`_${channel}.json`)).forEach((f:string) => { + const data = JSON.parse(readFileSync(`${dir}/${f}`, 'utf-8')); + Object.entries(data.nodes).forEach(([id, pts]: [string, any]) => { + if (!nodes[id]) nodes[id] = []; + nodes[id].push(...pts); + }); + }); + } + } catch (e) {} + res.json({ nodes }); +}); + +app.get('/api/data', async (req, res) => { + const { node, start, channel } = req.query; + const ts = parseInt(start as string); + const startTime = new Date(ts * 1000); + const endTime = new Date((ts + 10) * 1000); + + try { + const dbRes = await pool.query('SELECT value FROM adc_samples WHERE node_id = $1 AND channel = $2 AND time >= $3 AND time < $4 ORDER BY time ASC', [node, channel, startTime, endTime]); + if (dbRes.rows.length > 0) return res.json({ samples: dbRes.rows.map(r => r.value), source: 'db' }); + + const index = JSON.parse(readFileSync(INDEX_PATH, 'utf-8')); + const targetFile = index?.nodes[node as string]?.files?.find((f: any) => ts >= f.start && ts <= f.end && (f.channel === channel || f.path.includes(`_${channel}_`))); + if (!targetFile) return res.status(404).json({ error: 'File not found' }); + + const fixPath = (p: string) => p.replace(/\\/g, '/').replace('F:/', '/mnt/kingston/').replace('E:/', '/mnt/data_sdb1/'); + const proc = spawn('python3', ['/app/scripts/extract_hdf5_window.py', '--file', fixPath(targetFile.path), '--channel', (channel as string).replace('ch',''), '--start', ts.toString(), '--duration', '10']); + let stdout = ''; + proc.stdout.on('data', (d) => stdout += d.toString()); + proc.on('close', () => { + try { res.json(JSON.parse(stdout)); } catch (e) { res.status(500).json({ error: 'Python error' }); } + }); + } catch (err) { res.status(500).json({ error: 'Server error' }); } +}); + +app.post('/api/chat', (req, res) => { + const { message } = req.body; + const prompt = `Assistant Seismic. User: ${message}`; + const proc = spawn('/home/floppyrj45/.local/bin/cursor-agent', ['--print', '--force', prompt]); + let output = ''; + proc.stdout.on('data', (d) => output += d.toString()); + proc.on('close', () => res.json({ response: output })); +}); + +app.get('/api/export', (req, res) => { + const { node, date, channel, start } = req.query; + try { + const index = JSON.parse(readFileSync(INDEX_PATH, 'utf-8')); + const targetFile = index?.nodes[node as string]?.files?.find((f:any) => f.path.includes(`_${channel}_`)); + if (!targetFile) return res.status(404).send('Not found'); + const fixPath = (p: string) => p.replace(/\\/g, '/').replace('F:/', '/mnt/kingston/').replace('E:/', '/mnt/data_sdb1/'); + const proc = spawn('python3', ['/app/scripts/export_csv.py', '--file', fixPath(targetFile.path), '--start', start as string, '--duration', '3600', '--output', `/tmp/export_${node}.csv`]); + proc.on('close', () => res.download(`/tmp/export_${node}.csv`)); + } catch (e) { res.status(500).send('Export error'); } +}); + +app.listen(PORT, () => console.log(`API port ${PORT}`)); +// H5 Coverage Endpoints +import sqlite3 from 'sqlite3'; +const h5db = new sqlite3.Database('/app/h5_data.db', sqlite3.OPEN_READONLY, (err: any) => { + if (err) console.error('H5 DB not available:', err.message); +}); + +app.get('/api/h5/coverage', (req, res) => { + h5db.all(` + SELECT + COUNT(*) as total_positions, + SUM(CASE WHEN has_data = 1 THEN 1 ELSE 0 END) as with_data, + SUM(CASE WHEN has_aux = 1 THEN 1 ELSE 0 END) as with_aux, + SUM(sample_count) as total_files + FROM positions + `, (err: any, rows: any) => { + if (err) return res.status(500).json({ error: err.message }); + + const stats = rows[0]; + const coverage_pct = ((stats.with_data / stats.total_positions) * 100).toFixed(1); + + res.json({ + total_positions: stats.total_positions, + with_data: stats.with_data, + with_aux: stats.with_aux, + total_files: stats.total_files, + coverage_pct: parseFloat(coverage_pct), + missing: stats.total_positions - stats.with_data + }); + }); +}); + +app.get('/api/h5/gaps', (req, res) => { + h5db.all('SELECT node_code FROM positions WHERE has_data = 0 ORDER BY node_code', (err: any, rows: any) => { + if (err) return res.status(500).json({ error: err.message }); + + const missing = rows.map((r: any) => r.node_code); + const gaps = []; + let gapStart = null; + + for (let i = 0; i < missing.length; i++) { + if (i === 0 || missing[i] !== missing[i-1] + 1) { + if (gapStart !== null) { + gaps.push({ start: gapStart, end: missing[i-1], length: missing[i-1] - gapStart + 1 }); + } + gapStart = missing[i]; + } + } + + if (gapStart !== null) { + gaps.push({ start: gapStart, end: missing[missing.length - 1], length: missing[missing.length - 1] - gapStart + 1 }); + } + + res.json({ gaps, total_missing: missing.length }); + }); +}); + +// GET /api/conversion-status - Proxy vers la VM de conversion +app.get('/api/conversion-status', async (req, res) => { + try { + const response = await fetch('http://192.168.0.81:8000/conversion-progress.json'); + const data = await response.json(); + res.json(data); + } catch (err) { + res.status(503).json({ + error: 'VM conversion inaccessible', + total: 345, + processed: 0, + errors: 0, + percent: 0, + eta_minutes: 0 + }); + } +}); + +// ============ H5 2026 Format Endpoints ============ + +app.get('/api/h5/files', (req, res) => { + const h5Dir = '/home/floppyrj45/docker/seismic-nodes-viewer/data/h5'; + try { + const files = readdirSync(h5Dir) + .filter(f => f.endsWith('.h5')) + .map(filename => { + const match = filename.match(/rsn(\d+)/); + const nodeId = match ? match[1] : 'unknown'; + const matchDate = filename.match(/_(\d{6})_/); + const date = matchDate ? matchDate[1] : ''; + return { filename, nodeId, date, path: `${h5Dir}/${filename}` }; + }); + res.json({ files, count: files.length }); + } catch (e) { + res.status(500).json({ error: 'Cannot list H5 files' }); + } +}); + +app.get('/api/h5/data', (req, res) => { + const { file, channel, start, duration } = req.query; + const filePath = `/home/floppyrj45/docker/seismic-nodes-viewer/data/h5/${file}`; + + const proc = spawn('python3', [ + '/home/floppyrj45/docker/seismic-nodes-viewer/scripts/extract_h5_calibrated.py', + '--file', filePath, + '--channel', channel as string, + '--start', (start || '0') as string, + '--duration', (duration || '10') as string + ]); + + let stdout = ''; + proc.stdout.on('data', d => stdout += d.toString()); + proc.on('close', () => { + try { + res.json(JSON.parse(stdout)); + } catch (e) { + res.status(500).json({ error: 'Python script error', raw: stdout }); + } + }); +}); + + +// Docs endpoints +app.get('/api/docs/manifest', (req, res) => { + res.sendFile('/data/docs/campaign_manifest.json'); +}); + +app.get('/api/docs/:filename', (req, res) => { + const file = req.params.filename; + res.sendFile(`/data/docs/${file}`); +}); diff --git a/data/docs/Final_PickUp_20200918.png b/data/docs/Final_PickUp_20200918.png new file mode 100644 index 0000000..b3f49fb Binary files /dev/null and b/data/docs/Final_PickUp_20200918.png differ diff --git a/data/docs/S320A08a10-GUNDALF array modelling suite - Array report.pdf b/data/docs/S320A08a10-GUNDALF array modelling suite - Array report.pdf new file mode 100644 index 0000000..e5c1b03 Binary files /dev/null and b/data/docs/S320A08a10-GUNDALF array modelling suite - Array report.pdf differ diff --git a/data/docs/SBGS Standard Technical Specs for Node Surveys v10.docx b/data/docs/SBGS Standard Technical Specs for Node Surveys v10.docx new file mode 100644 index 0000000..0346a26 Binary files /dev/null and b/data/docs/SBGS Standard Technical Specs for Node Surveys v10.docx differ diff --git a/data/docs/SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx b/data/docs/SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx new file mode 100644 index 0000000..b526c6e Binary files /dev/null and b/data/docs/SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx differ diff --git a/data/docs/SETE-0965P1002.csv b/data/docs/SETE-0965P1002.csv new file mode 100644 index 0000000..00bbd28 --- /dev/null +++ b/data/docs/SETE-0965P1002.csv @@ -0,0 +1,61 @@ +965,4961,1,A1,2,558568.9,4797608.3,34.1,3,0,2020,250,9,30,3,672023 +965,4963,1,A1,2,558610.5,4797635.4,34.1,2.7,0,2020,250,9,30,25,460017 +965,4965,1,A1,2,558653.3,4797661.3,34.1,2.9,0,2020,250,9,30,47,260023 +965,4967,1,A1,2,558696.1,4797687.2,34.1,2.8,0,2020,250,9,31,9,220018 +965,4969,1,A1,2,558738,4797714.6,34.1,2.9,0,2020,250,9,31,31,388019 +965,4971,1,A1,2,558775,4797748.8,34.3,2.9,0,2020,250,9,31,54,128017 +965,4973,1,A1,2,558812.1,4797783.9,34.1,2.8,0,2020,250,9,32,16,896020 +965,4975,1,A1,2,558854,4797810.7,34.1,2.8,0,2020,250,9,32,38,384020 +965,4977,1,A1,2,558897.7,4797835.2,34.1,2.8,0,2020,250,9,32,59,984020 +965,4979,1,A1,2,558938.4,4797864.3,34.1,2.8,0,2020,250,9,33,21,892020 +965,4981,1,A1,2,558979.4,4797892.9,34.1,2.7,0,2020,250,9,33,43,764021 +965,4983,1,A1,2,559018.8,4797923.9,34.1,2.8,0,2020,250,9,34,5,740021 +965,4985,1,A1,2,559059.7,4797952.7,34.1,2.9,0,2020,250,9,34,27,604022 +965,4987,1,A1,2,559100.5,4797981.6,34.2,2.9,0,2020,250,9,34,49,332021 +965,4989,1,A1,2,559142.6,4798008.5,34.1,2.9,0,2020,250,9,35,10,992021 +965,4991,1,A1,2,559183.4,4798037.5,34.1,2.9,0,2020,250,9,35,32,836021 +965,4993,1,A1,2,559225.3,4798064.8,34.1,2.8,0,2020,250,9,35,54,632022 +965,4995,1,A1,2,559265.9,4798093.9,34.1,2.9,0,2020,250,9,36,16,444021 +965,4997,1,A1,2,559306.2,4798123.6,33.9,2.8,0,2020,250,9,36,38,336022 +965,4999,1,A1,2,559347.7,4798151.6,34.2,2.8,0,2020,250,9,37,0,136022 +965,5001,1,A1,2,559388.7,4798180.2,34.2,2.9,0,2020,250,9,37,21,996023 +965,5003,1,A1,2,559428.5,4798210.6,34.1,2.8,0,2020,250,9,37,43,832017 +965,5005,1,A1,2,559470,4798238.3,33.5,2.8,0,2020,250,9,38,5,452022 +965,5007,1,A1,2,559510.7,4798267.4,34.1,2.9,0,2020,250,9,38,27,292022 +965,5009,1,A1,2,559550.9,4798297.2,34.2,2.8,0,2020,250,9,38,49,204023 +965,5011,1,A1,2,559591.8,4798326,34.1,2.8,0,2020,250,9,39,11,8017 +965,5013,1,A1,2,559633.5,4798353.7,34.1,2.9,0,2020,250,9,39,32,744044 +965,5015,1,A1,2,559675.1,4798381.3,34.2,2.8,0,2020,250,9,39,54,440023 +965,5017,1,A1,2,559715.2,4798411.2,34.1,2.8,0,2020,250,9,40,16,316022 +965,5019,1,A1,2,559756.7,4798439.1,34.2,2.8,0,2020,250,9,40,38,112017 +965,5021,1,A1,2,559797.4,4798468,34.2,2.9,0,2020,250,9,41,0,92018 +965,5023,1,A1,2,559838.4,4798496.9,34.1,2.9,0,2020,250,9,41,22,104018 +965,5025,1,A1,2,559880,4798524.5,34.2,2.9,0,2020,250,9,41,43,996020 +965,5027,1,A1,2,559920.9,4798553.4,34.1,2.9,0,2020,250,9,42,5,944019 +965,5029,1,A1,2,559962.2,4798581.5,34.2,2.8,0,2020,250,9,42,27,864021 +965,5031,1,A1,2,560004,4798609,34.2,2.8,0,2020,250,9,42,49,656021 +965,5033,1,A1,2,560045.7,4798636.5,34.2,2.8,0,2020,250,9,43,11,452020 +965,5035,1,A1,2,560085.9,4798666.5,34.1,2.8,0,2020,250,9,43,33,512021 +965,5037,1,A1,2,560127,4798694.9,34.1,2.9,0,2020,250,9,43,55,440022 +965,5039,1,A1,2,560168.3,4798722.9,34.3,2.8,0,2020,250,9,44,17,424017 +965,5041,1,A1,2,560208.3,4798753.1,34.1,2.8,0,2020,250,9,44,39,604018 +965,5043,1,A1,2,560250.1,4798781.2,34.1,2.9,0,2020,250,9,45,0,944018 +965,5045,1,A1,2,560290.2,4798811,34.2,2.8,0,2020,250,9,45,21,36021 +965,5047,1,A1,2,560329.6,4798841.2,34.1,2.7,0,2020,250,9,45,40,728019 +965,5049,1,A1,2,560370.5,4798869.9,34.1,2.7,0,2020,250,9,46,0,968019 +965,5051,1,A1,2,560410.9,4798899.4,34.1,2.7,0,2020,250,9,46,21,420019 +965,5053,1,A1,2,560451.2,4798929.3,34.1,2.7,0,2020,250,9,46,41,956020 +965,5055,1,A1,2,560493.1,4798956.6,34.3,2.7,0,2020,250,9,47,2,200026 +965,5057,1,A1,2,560533.9,4798985.4,34.1,2.7,0,2020,250,9,47,22,536019 +965,5059,1,A1,2,560574.3,4799014.8,34.4,2.7,0,2020,250,9,47,43,108020 +965,5061,1,A1,2,560616,4799042.7,34.4,2.7,0,2020,250,9,48,3,564021 +965,5063,1,A1,2,560657.3,4799070.5,34.2,2.7,0,2020,250,9,48,23,944021 +965,5065,1,A1,2,560697.6,4799100.3,34.4,2.7,0,2020,250,9,48,44,560022 +965,5067,1,A1,2,560739.2,4799128.1,34.2,2.7,0,2020,250,9,49,5,88023 +965,5069,1,A1,2,560779.5,4799157.7,34.4,2.7,0,2020,250,9,49,25,692018 +965,5071,1,A1,2,560820.6,4799186.4,34.4,2.7,0,2020,250,9,49,46,120024 +965,5073,1,A1,2,560862.5,4799213.6,34.4,2.7,0,2020,250,9,50,6,68022 +965,5075,1,A1,2,560903,4799242.8,34.4,2.7,0,2020,250,9,50,26,176021 +965,5077,1,A1,2,560944.5,4799270.8,34.4,2.7,0,2020,250,9,50,46,204019 +965,5079,1,A1,2,560986.2,4799298.2,34.4,2.7,0,2020,250,9,51,6,152018 +965,5081,1,A1,2,561026.4,4799328.2,34.4,2.7,0,2020,250,9,51,26,300023 diff --git a/data/docs/SeteRxPreplots.r01 b/data/docs/SeteRxPreplots.r01 new file mode 100644 index 0000000..0dc80e1 --- /dev/null +++ b/data/docs/SeteRxPreplots.r01 @@ -0,0 +1,200 @@ +R 1000 5000 1 559867.204797453.00 0.00 +R 1000 5004 1 559949.104797510.40 0.00 +R 1000 5008 1 560031.104797567.80 0.00 +R 1000 5012 1 560113.004797625.10 0.00 +R 1000 5016 1 560194.904797682.50 0.00 +R 1000 5020 1 560276.804797739.80 0.00 +R 1000 5024 1 560358.704797797.20 0.00 +R 1000 5028 1 560440.604797854.60 0.00 +R 1000 5032 1 560522.504797911.90 0.00 +R 1000 5036 1 560604.504797969.30 0.00 +R 1000 5040 1 560686.404798026.60 0.00 +R 1000 5044 1 560768.304798084.00 0.00 +R 1000 5048 1 560850.204798141.30 0.00 +R 1000 5052 1 560932.104798198.70 0.00 +R 1000 5056 1 561014.004798256.10 0.00 +R 1000 5060 1 561096.004798313.40 0.00 +R 1000 5064 1 561177.904798370.80 0.00 +R 1000 5068 1 561259.804798428.10 0.00 +R 1000 5072 1 561341.704798485.50 0.00 +R 1000 5076 1 561423.604798542.80 0.00 +R 1000 5080 1 561505.504798600.20 0.00 +R 1000 5084 1 561587.404798657.60 0.00 +R 1000 5088 1 561669.404798714.90 0.00 +R 1000 5092 1 561751.304798772.30 0.00 +R 1000 5096 1 561833.204798829.60 0.00 +R 1012 5000 1 560039.304797207.30 0.00 +R 1012 5004 1 560121.204797264.70 0.00 +R 1012 5008 1 560203.104797322.00 0.00 +R 1012 5012 1 560285.004797379.40 0.00 +R 1012 5016 1 560367.004797436.70 0.00 +R 1012 5020 1 560448.904797494.10 0.00 +R 1012 5024 1 560530.804797551.40 0.00 +R 1012 5028 1 560612.704797608.80 0.00 +R 1012 5032 1 560694.604797666.20 0.00 +R 1012 5036 1 560776.504797723.50 0.00 +R 1012 5040 1 560858.504797780.90 0.00 +R 1012 5044 1 560940.404797838.20 0.00 +R 1012 5048 1 561022.304797895.60 0.00 +R 1012 5052 1 561104.204797953.00 0.00 +R 1012 5056 1 561186.104798010.30 0.00 +R 1012 5060 1 561268.004798067.70 0.00 +R 1012 5064 1 561349.904798125.00 0.00 +R 1012 5068 1 561431.904798182.40 0.00 +R 1012 5072 1 561513.804798239.70 0.00 +R 1012 5076 1 561595.704798297.10 0.00 +R 1012 5080 1 561677.604798354.50 0.00 +R 1012 5084 1 561759.504798411.80 0.00 +R 1012 5088 1 561841.404798469.20 0.00 +R 1012 5092 1 561923.304798526.50 0.00 +R 1012 5096 1 562005.304798583.90 0.00 +R 1024 5000 1 560211.404796961.60 0.00 +R 1024 5004 1 560293.304797018.90 0.00 +R 1024 5008 1 560375.204797076.30 0.00 +R 1024 5012 1 560457.104797133.60 0.00 +R 1024 5016 1 560539.004797191.00 0.00 +R 1024 5020 1 560620.904797248.30 0.00 +R 1024 5024 1 560702.904797305.70 0.00 +R 1024 5028 1 560784.804797363.10 0.00 +R 1024 5032 1 560866.704797420.40 0.00 +R 1024 5036 1 560948.604797477.80 0.00 +R 1024 5040 1 561030.504797535.10 0.00 +R 1024 5044 1 561112.404797592.50 0.00 +R 1024 5048 1 561194.404797649.80 0.00 +R 1024 5052 1 561276.304797707.20 0.00 +R 1024 5056 1 561358.204797764.60 0.00 +R 1024 5060 1 561440.104797821.90 0.00 +R 1024 5064 1 561522.004797879.30 0.00 +R 1024 5068 1 561603.904797936.60 0.00 +R 1024 5072 1 561685.804797994.00 0.00 +R 1024 5076 1 561767.804798051.40 0.00 +R 1024 5080 1 561849.704798108.70 0.00 +R 1024 5084 1 561931.604798166.10 0.00 +R 1024 5088 1 562013.504798223.40 0.00 +R 1024 5092 1 562095.404798280.80 0.00 +R 1024 5096 1 562177.304798338.10 0.00 +R 1036 5000 1 560383.404796715.80 0.00 +R 1036 5004 1 560465.404796773.20 0.00 +R 1036 5008 1 560547.304796830.50 0.00 +R 1036 5012 1 560629.204796887.90 0.00 +R 1036 5016 1 560711.104796945.20 0.00 +R 1036 5020 1 560793.004797002.60 0.00 +R 1036 5024 1 560874.904797060.00 0.00 +R 1036 5028 1 560956.904797117.30 0.00 +R 1036 5032 1 561038.804797174.70 0.00 +R 1036 5036 1 561120.704797232.00 0.00 +R 1036 5040 1 561202.604797289.40 0.00 +R 1036 5044 1 561284.504797346.70 0.00 +R 1036 5048 1 561366.404797404.10 0.00 +R 1036 5052 1 561448.304797461.50 0.00 +R 1036 5056 1 561530.304797518.80 0.00 +R 1036 5060 1 561612.204797576.20 0.00 +R 1036 5064 1 561694.104797633.50 0.00 +R 1036 5068 1 561776.004797690.90 0.00 +R 1036 5072 1 561857.904797748.20 0.00 +R 1036 5076 1 561939.804797805.60 0.00 +R 1036 5080 1 562021.704797863.00 0.00 +R 1036 5084 1 562103.704797920.30 0.00 +R 1036 5088 1 562185.604797977.70 0.00 +R 1036 5092 1 562267.504798035.00 0.00 +R 1036 5096 1 562349.404798092.40 0.00 +R 1048 5000 1 560555.504796470.10 0.00 +R 1048 5004 1 560637.404796527.40 0.00 +R 1048 5008 1 560719.304796584.80 0.00 +R 1048 5012 1 560801.304796642.10 0.00 +R 1048 5016 1 560883.204796699.50 0.00 +R 1048 5020 1 560965.104796756.90 0.00 +R 1048 5024 1 561047.004796814.20 0.00 +R 1048 5028 1 561128.904796871.60 0.00 +R 1048 5032 1 561210.804796928.90 0.00 +R 1048 5036 1 561292.804796986.30 0.00 +R 1048 5040 1 561374.704797043.60 0.00 +R 1048 5044 1 561456.604797101.00 0.00 +R 1048 5048 1 561538.504797158.40 0.00 +R 1048 5052 1 561620.404797215.70 0.00 +R 1048 5056 1 561702.304797273.10 0.00 +R 1048 5060 1 561784.204797330.40 0.00 +R 1048 5064 1 561866.204797387.80 0.00 +R 1048 5068 1 561948.104797445.10 0.00 +R 1048 5072 1 562030.004797502.50 0.00 +R 1048 5076 1 562111.904797559.90 0.00 +R 1048 5080 1 562193.804797617.20 0.00 +R 1048 5084 1 562275.704797674.60 0.00 +R 1048 5088 1 562357.704797731.90 0.00 +R 1048 5092 1 562439.604797789.30 0.00 +R 1048 5096 1 562521.504797846.60 0.00 +R 1060 5000 1 560727.604796224.30 0.00 +R 1060 5004 1 560809.504796281.70 0.00 +R 1060 5008 1 560891.404796339.00 0.00 +R 1060 5012 1 560973.304796396.40 0.00 +R 1060 5016 1 561055.304796453.70 0.00 +R 1060 5020 1 561137.204796511.10 0.00 +R 1060 5024 1 561219.104796568.50 0.00 +R 1060 5028 1 561301.004796625.80 0.00 +R 1060 5032 1 561382.904796683.20 0.00 +R 1060 5036 1 561464.804796740.50 0.00 +R 1060 5040 1 561546.704796797.90 0.00 +R 1060 5044 1 561628.704796855.30 0.00 +R 1060 5048 1 561710.604796912.60 0.00 +R 1060 5052 1 561792.504796970.00 0.00 +R 1060 5056 1 561874.404797027.30 0.00 +R 1060 5060 1 561956.304797084.70 0.00 +R 1060 5064 1 562038.204797142.00 0.00 +R 1060 5068 1 562120.104797199.40 0.00 +R 1060 5072 1 562202.104797256.80 0.00 +R 1060 5076 1 562284.004797314.10 0.00 +R 1060 5080 1 562365.904797371.50 0.00 +R 1060 5084 1 562447.804797428.80 0.00 +R 1060 5088 1 562529.704797486.20 0.00 +R 1060 5092 1 562611.604797543.50 0.00 +R 1060 5096 1 562693.604797600.90 0.00 +R 1072 5000 1 560899.704795978.60 0.00 +R 1072 5004 1 560981.604796035.90 0.00 +R 1072 5008 1 561063.504796093.30 0.00 +R 1072 5012 1 561145.404796150.60 0.00 +R 1072 5016 1 561227.304796208.00 0.00 +R 1072 5020 1 561309.204796265.40 0.00 +R 1072 5024 1 561391.204796322.70 0.00 +R 1072 5028 1 561473.104796380.10 0.00 +R 1072 5032 1 561555.004796437.40 0.00 +R 1072 5036 1 561636.904796494.80 0.00 +R 1072 5040 1 561718.804796552.20 0.00 +R 1072 5044 1 561800.704796609.50 0.00 +R 1072 5048 1 561882.604796666.90 0.00 +R 1072 5052 1 561964.604796724.20 0.00 +R 1072 5056 1 562046.504796781.60 0.00 +R 1072 5060 1 562128.404796838.90 0.00 +R 1072 5064 1 562210.304796896.30 0.00 +R 1072 5068 1 562292.204796953.70 0.00 +R 1072 5072 1 562374.104797011.00 0.00 +R 1072 5076 1 562456.104797068.40 0.00 +R 1072 5080 1 562538.004797125.70 0.00 +R 1072 5084 1 562619.904797183.10 0.00 +R 1072 5088 1 562701.804797240.40 0.00 +R 1072 5092 1 562783.704797297.80 0.00 +R 1072 5096 1 562865.604797355.20 0.00 +R 1084 5000 1 561071.704795732.80 0.00 +R 1084 5004 1 561153.704795790.20 0.00 +R 1084 5008 1 561235.604795847.50 0.00 +R 1084 5012 1 561317.504795904.90 0.00 +R 1084 5016 1 561399.404795962.30 0.00 +R 1084 5020 1 561481.304796019.60 0.00 +R 1084 5024 1 561563.204796077.00 0.00 +R 1084 5028 1 561645.104796134.30 0.00 +R 1084 5032 1 561727.104796191.70 0.00 +R 1084 5036 1 561809.004796249.00 0.00 +R 1084 5040 1 561890.904796306.40 0.00 +R 1084 5044 1 561972.804796363.80 0.00 +R 1084 5048 1 562054.704796421.10 0.00 +R 1084 5052 1 562136.604796478.50 0.00 +R 1084 5056 1 562218.504796535.80 0.00 +R 1084 5060 1 562300.504796593.20 0.00 +R 1084 5064 1 562382.404796650.60 0.00 +R 1084 5068 1 562464.304796707.90 0.00 +R 1084 5072 1 562546.204796765.30 0.00 +R 1084 5076 1 562628.104796822.60 0.00 +R 1084 5080 1 562710.004796880.00 0.00 +R 1084 5084 1 562792.004796937.30 0.00 +R 1084 5088 1 562873.904796994.70 0.00 +R 1084 5092 1 562955.804797052.10 0.00 +R 1084 5096 1 563037.704797109.40 0.00 diff --git a/data/docs/SeteSxPreplots.s01 b/data/docs/SeteSxPreplots.s01 new file mode 100644 index 0000000..9d9a3f8 --- /dev/null +++ b/data/docs/SeteSxPreplots.s01 @@ -0,0 +1,7216 @@ +S 961 4961 1 558509.304797692.50 0.00 +S 961 4963 1 558550.304797721.20 0.00 +S 961 4965 1 558591.204797749.80 0.00 +S 961 4967 1 558632.204797778.50 0.00 +S 961 4969 1 558673.104797807.20 0.00 +S 961 4971 1 558714.104797835.90 0.00 +S 961 4973 1 558755.104797864.60 0.00 +S 961 4975 1 558796.004797893.20 0.00 +S 961 4977 1 558837.004797921.90 0.00 +S 961 4979 1 558877.904797950.60 0.00 +S 961 4981 1 558918.904797979.30 0.00 +S 961 4983 1 558959.804798008.00 0.00 +S 961 4985 1 559000.804798036.60 0.00 +S 961 4987 1 559041.804798065.30 0.00 +S 961 4989 1 559082.704798094.00 0.00 +S 961 4991 1 559123.704798122.70 0.00 +S 961 4993 1 559164.604798151.30 0.00 +S 961 4995 1 559205.604798180.00 0.00 +S 961 4997 1 559246.604798208.70 0.00 +S 961 4999 1 559287.504798237.40 0.00 +S 961 5001 1 559328.504798266.10 0.00 +S 961 5003 1 559369.404798294.70 0.00 +S 961 5005 1 559410.404798323.40 0.00 +S 961 5007 1 559451.304798352.10 0.00 +S 961 5009 1 559492.304798380.80 0.00 +S 961 5011 1 559533.304798409.50 0.00 +S 961 5013 1 559574.204798438.10 0.00 +S 961 5015 1 559615.204798466.80 0.00 +S 961 5017 1 559656.104798495.50 0.00 +S 961 5019 1 559697.104798524.20 0.00 +S 961 5021 1 559738.004798552.80 0.00 +S 961 5023 1 559779.004798581.50 0.00 +S 961 5025 1 559820.004798610.20 0.00 +S 961 5027 1 559860.904798638.90 0.00 +S 961 5029 1 559901.904798667.60 0.00 +S 961 5031 1 559942.804798696.20 0.00 +S 961 5033 1 559983.804798724.90 0.00 +S 961 5035 1 560024.704798753.60 0.00 +S 961 5037 1 560065.704798782.30 0.00 +S 961 5039 1 560106.704798811.00 0.00 +S 961 5041 1 560147.604798839.60 0.00 +S 961 5043 1 560188.604798868.30 0.00 +S 961 5045 1 560229.504798897.00 0.00 +S 961 5047 1 560270.504798925.70 0.00 +S 961 5049 1 560311.504798954.40 0.00 +S 961 5051 1 560352.404798983.00 0.00 +S 961 5053 1 560393.404799011.70 0.00 +S 961 5055 1 560434.304799040.40 0.00 +S 961 5057 1 560475.304799069.10 0.00 +S 961 5059 1 560516.204799097.70 0.00 +S 961 5061 1 560557.204799126.40 0.00 +S 961 5063 1 560598.204799155.10 0.00 +S 961 5065 1 560639.104799183.80 0.00 +S 961 5067 1 560680.104799212.50 0.00 +S 961 5069 1 560721.004799241.10 0.00 +S 961 5071 1 560762.004799269.80 0.00 +S 961 5073 1 560802.904799298.50 0.00 +S 961 5075 1 560843.904799327.20 0.00 +S 961 5077 1 560884.904799355.90 0.00 +S 961 5079 1 560925.804799384.50 0.00 +S 961 5081 1 560966.804799413.20 0.00 +S 961 5083 1 561007.704799441.90 0.00 +S 961 5085 1 561048.704799470.60 0.00 +S 961 5087 1 561089.604799499.20 0.00 +S 961 5089 1 561130.604799527.90 0.00 +S 961 5091 1 561171.604799556.60 0.00 +S 961 5093 1 561212.504799585.30 0.00 +S 961 5095 1 561253.504799614.00 0.00 +S 961 5097 1 561294.404799642.60 0.00 +S 961 5099 1 561335.404799671.30 0.00 +S 961 5101 1 561376.304799700.00 0.00 +S 961 5103 1 561417.304799728.70 0.00 +S 961 5105 1 561458.304799757.40 0.00 +S 961 5107 1 561499.204799786.00 0.00 +S 961 5109 1 561540.204799814.70 0.00 +S 961 5111 1 561581.104799843.40 0.00 +S 961 5113 1 561622.104799872.10 0.00 +S 961 5115 1 561663.104799900.80 0.00 +S 961 5117 1 561704.004799929.40 0.00 +S 961 5119 1 561745.004799958.10 0.00 +S 961 5121 1 561785.904799986.80 0.00 +S 961 5123 1 561826.904800015.50 0.00 +S 961 5125 1 561867.804800044.10 0.00 +S 961 5127 1 561908.804800072.80 0.00 +S 961 5129 1 561949.804800101.50 0.00 +S 961 5131 1 561990.704800130.20 0.00 +S 961 5133 1 562031.704800158.90 0.00 +S 961 5135 1 562072.604800187.50 0.00 +S 963 4961 1 558538.004797651.50 0.00 +S 963 4963 1 558579.004797680.20 0.00 +S 963 4965 1 558619.904797708.90 0.00 +S 963 4967 1 558660.904797737.60 0.00 +S 963 4969 1 558701.804797766.20 0.00 +S 963 4971 1 558742.804797794.90 0.00 +S 963 4973 1 558783.704797823.60 0.00 +S 963 4975 1 558824.704797852.30 0.00 +S 963 4977 1 558865.704797881.00 0.00 +S 963 4979 1 558906.604797909.60 0.00 +S 963 4981 1 558947.604797938.30 0.00 +S 963 4983 1 558988.504797967.00 0.00 +S 963 4985 1 559029.504797995.70 0.00 +S 963 4987 1 559070.404798024.40 0.00 +S 963 4989 1 559111.404798053.00 0.00 +S 963 4991 1 559152.404798081.70 0.00 +S 963 4993 1 559193.304798110.40 0.00 +S 963 4995 1 559234.304798139.10 0.00 +S 963 4997 1 559275.204798167.70 0.00 +S 963 4999 1 559316.204798196.40 0.00 +S 963 5001 1 559357.104798225.10 0.00 +S 963 5003 1 559398.104798253.80 0.00 +S 963 5005 1 559439.104798282.50 0.00 +S 963 5007 1 559480.004798311.10 0.00 +S 963 5009 1 559521.004798339.80 0.00 +S 963 5011 1 559561.904798368.50 0.00 +S 963 5013 1 559602.904798397.20 0.00 +S 963 5015 1 559643.804798425.90 0.00 +S 963 5017 1 559684.804798454.50 0.00 +S 963 5019 1 559725.804798483.20 0.00 +S 963 5021 1 559766.704798511.90 0.00 +S 963 5023 1 559807.704798540.60 0.00 +S 963 5025 1 559848.604798569.20 0.00 +S 963 5027 1 559889.604798597.90 0.00 +S 963 5029 1 559930.604798626.60 0.00 +S 963 5031 1 559971.504798655.30 0.00 +S 963 5033 1 560012.504798684.00 0.00 +S 963 5035 1 560053.404798712.60 0.00 +S 963 5037 1 560094.404798741.30 0.00 +S 963 5039 1 560135.304798770.00 0.00 +S 963 5041 1 560176.304798798.70 0.00 +S 963 5043 1 560217.304798827.40 0.00 +S 963 5045 1 560258.204798856.00 0.00 +S 963 5047 1 560299.204798884.70 0.00 +S 963 5049 1 560340.104798913.40 0.00 +S 963 5051 1 560381.104798942.10 0.00 +S 963 5053 1 560422.004798970.80 0.00 +S 963 5055 1 560463.004798999.40 0.00 +S 963 5057 1 560504.004799028.10 0.00 +S 963 5059 1 560544.904799056.80 0.00 +S 963 5061 1 560585.904799085.50 0.00 +S 963 5063 1 560626.804799114.10 0.00 +S 963 5065 1 560667.804799142.80 0.00 +S 963 5067 1 560708.704799171.50 0.00 +S 963 5069 1 560749.704799200.20 0.00 +S 963 5071 1 560790.704799228.90 0.00 +S 963 5073 1 560831.604799257.50 0.00 +S 963 5075 1 560872.604799286.20 0.00 +S 963 5077 1 560913.504799314.90 0.00 +S 963 5079 1 560954.504799343.60 0.00 +S 963 5081 1 560995.504799372.30 0.00 +S 963 5083 1 561036.404799400.90 0.00 +S 963 5085 1 561077.404799429.60 0.00 +S 963 5087 1 561118.304799458.30 0.00 +S 963 5089 1 561159.304799487.00 0.00 +S 963 5091 1 561200.204799515.60 0.00 +S 963 5093 1 561241.204799544.30 0.00 +S 963 5095 1 561282.204799573.00 0.00 +S 963 5097 1 561323.104799601.70 0.00 +S 963 5099 1 561364.104799630.40 0.00 +S 963 5101 1 561405.004799659.00 0.00 +S 963 5103 1 561446.004799687.70 0.00 +S 963 5105 1 561486.904799716.40 0.00 +S 963 5107 1 561527.904799745.10 0.00 +S 963 5109 1 561568.904799773.80 0.00 +S 963 5111 1 561609.804799802.40 0.00 +S 963 5113 1 561650.804799831.10 0.00 +S 963 5115 1 561691.704799859.80 0.00 +S 963 5117 1 561732.704799888.50 0.00 +S 963 5119 1 561773.604799917.20 0.00 +S 963 5121 1 561814.604799945.80 0.00 +S 963 5123 1 561855.604799974.50 0.00 +S 963 5125 1 561896.504800003.20 0.00 +S 963 5127 1 561937.504800031.90 0.00 +S 963 5129 1 561978.404800060.50 0.00 +S 963 5131 1 562019.404800089.20 0.00 +S 963 5133 1 562060.304800117.90 0.00 +S 963 5135 1 562101.304800146.60 0.00 +S 965 4961 1 558566.704797610.60 0.00 +S 965 4963 1 558607.604797639.20 0.00 +S 965 4965 1 558648.604797667.90 0.00 +S 965 4967 1 558689.504797696.60 0.00 +S 965 4969 1 558730.504797725.30 0.00 +S 965 4971 1 558771.504797754.00 0.00 +S 965 4973 1 558812.404797782.60 0.00 +S 965 4975 1 558853.404797811.30 0.00 +S 965 4977 1 558894.304797840.00 0.00 +S 965 4979 1 558935.304797868.70 0.00 +S 965 4981 1 558976.204797897.40 0.00 +S 965 4983 1 559017.204797926.00 0.00 +S 965 4985 1 559058.204797954.70 0.00 +S 965 4987 1 559099.104797983.40 0.00 +S 965 4989 1 559140.104798012.10 0.00 +S 965 4991 1 559181.004798040.80 0.00 +S 965 4993 1 559222.004798069.40 0.00 +S 965 4995 1 559263.004798098.10 0.00 +S 965 4997 1 559303.904798126.80 0.00 +S 965 4999 1 559344.904798155.50 0.00 +S 965 5001 1 559385.804798184.10 0.00 +S 965 5003 1 559426.804798212.80 0.00 +S 965 5005 1 559467.704798241.50 0.00 +S 965 5007 1 559508.704798270.20 0.00 +S 965 5009 1 559549.704798298.90 0.00 +S 965 5011 1 559590.604798327.50 0.00 +S 965 5013 1 559631.604798356.20 0.00 +S 965 5015 1 559672.504798384.90 0.00 +S 965 5017 1 559713.504798413.60 0.00 +S 965 5019 1 559754.404798442.30 0.00 +S 965 5021 1 559795.404798470.90 0.00 +S 965 5023 1 559836.404798499.60 0.00 +S 965 5025 1 559877.304798528.30 0.00 +S 965 5027 1 559918.304798557.00 0.00 +S 965 5029 1 559959.204798585.60 0.00 +S 965 5031 1 560000.204798614.30 0.00 +S 965 5033 1 560041.104798643.00 0.00 +S 965 5035 1 560082.104798671.70 0.00 +S 965 5037 1 560123.104798700.40 0.00 +S 965 5039 1 560164.004798729.00 0.00 +S 965 5041 1 560205.004798757.70 0.00 +S 965 5043 1 560245.904798786.40 0.00 +S 965 5045 1 560286.904798815.10 0.00 +S 965 5047 1 560327.904798843.80 0.00 +S 965 5049 1 560368.804798872.40 0.00 +S 965 5051 1 560409.804798901.10 0.00 +S 965 5053 1 560450.704798929.80 0.00 +S 965 5055 1 560491.704798958.50 0.00 +S 965 5057 1 560532.604798987.20 0.00 +S 965 5059 1 560573.604799015.80 0.00 +S 965 5061 1 560614.604799044.50 0.00 +S 965 5063 1 560655.504799073.20 0.00 +S 965 5065 1 560696.504799101.90 0.00 +S 965 5067 1 560737.404799130.50 0.00 +S 965 5069 1 560778.404799159.20 0.00 +S 965 5071 1 560819.304799187.90 0.00 +S 965 5073 1 560860.304799216.60 0.00 +S 965 5075 1 560901.304799245.30 0.00 +S 965 5077 1 560942.204799273.90 0.00 +S 965 5079 1 560983.204799302.60 0.00 +S 965 5081 1 561024.104799331.30 0.00 +S 965 5083 1 561065.104799360.00 0.00 +S 965 5085 1 561106.004799388.70 0.00 +S 965 5087 1 561147.004799417.30 0.00 +S 965 5089 1 561188.004799446.00 0.00 +S 965 5091 1 561228.904799474.70 0.00 +S 965 5093 1 561269.904799503.40 0.00 +S 965 5095 1 561310.804799532.00 0.00 +S 965 5097 1 561351.804799560.70 0.00 +S 965 5099 1 561392.704799589.40 0.00 +S 965 5101 1 561433.704799618.10 0.00 +S 965 5103 1 561474.704799646.80 0.00 +S 965 5105 1 561515.604799675.40 0.00 +S 965 5107 1 561556.604799704.10 0.00 +S 965 5109 1 561597.504799732.80 0.00 +S 965 5111 1 561638.504799761.50 0.00 +S 965 5113 1 561679.504799790.20 0.00 +S 965 5115 1 561720.404799818.80 0.00 +S 965 5117 1 561761.404799847.50 0.00 +S 965 5119 1 561802.304799876.20 0.00 +S 965 5121 1 561843.304799904.90 0.00 +S 965 5123 1 561884.204799933.60 0.00 +S 965 5125 1 561925.204799962.20 0.00 +S 965 5127 1 561966.204799990.90 0.00 +S 965 5129 1 562007.104800019.60 0.00 +S 965 5131 1 562048.104800048.30 0.00 +S 965 5133 1 562089.004800076.90 0.00 +S 965 5135 1 562130.004800105.60 0.00 +S 967 4961 1 558595.404797569.60 0.00 +S 967 4963 1 558636.304797598.30 0.00 +S 967 4965 1 558677.304797627.00 0.00 +S 967 4967 1 558718.204797655.60 0.00 +S 967 4969 1 558759.204797684.30 0.00 +S 967 4971 1 558800.104797713.00 0.00 +S 967 4973 1 558841.104797741.70 0.00 +S 967 4975 1 558882.104797770.40 0.00 +S 967 4977 1 558923.004797799.00 0.00 +S 967 4979 1 558964.004797827.70 0.00 +S 967 4981 1 559004.904797856.40 0.00 +S 967 4983 1 559045.904797885.10 0.00 +S 967 4985 1 559086.804797913.80 0.00 +S 967 4987 1 559127.804797942.40 0.00 +S 967 4989 1 559168.804797971.10 0.00 +S 967 4991 1 559209.704797999.80 0.00 +S 967 4993 1 559250.704798028.50 0.00 +S 967 4995 1 559291.604798057.20 0.00 +S 967 4997 1 559332.604798085.80 0.00 +S 967 4999 1 559373.504798114.50 0.00 +S 967 5001 1 559414.504798143.20 0.00 +S 967 5003 1 559455.504798171.90 0.00 +S 967 5005 1 559496.404798200.50 0.00 +S 967 5007 1 559537.404798229.20 0.00 +S 967 5009 1 559578.304798257.90 0.00 +S 967 5011 1 559619.304798286.60 0.00 +S 967 5013 1 559660.204798315.30 0.00 +S 967 5015 1 559701.204798343.90 0.00 +S 967 5017 1 559742.204798372.60 0.00 +S 967 5019 1 559783.104798401.30 0.00 +S 967 5021 1 559824.104798430.00 0.00 +S 967 5023 1 559865.004798458.70 0.00 +S 967 5025 1 559906.004798487.30 0.00 +S 967 5027 1 559947.004798516.00 0.00 +S 967 5029 1 559987.904798544.70 0.00 +S 967 5031 1 560028.904798573.40 0.00 +S 967 5033 1 560069.804798602.00 0.00 +S 967 5035 1 560110.804798630.70 0.00 +S 967 5037 1 560151.704798659.40 0.00 +S 967 5039 1 560192.704798688.10 0.00 +S 967 5041 1 560233.704798716.80 0.00 +S 967 5043 1 560274.604798745.40 0.00 +S 967 5045 1 560315.604798774.10 0.00 +S 967 5047 1 560356.504798802.80 0.00 +S 967 5049 1 560397.504798831.50 0.00 +S 967 5051 1 560438.404798860.20 0.00 +S 967 5053 1 560479.404798888.80 0.00 +S 967 5055 1 560520.404798917.50 0.00 +S 967 5057 1 560561.304798946.20 0.00 +S 967 5059 1 560602.304798974.90 0.00 +S 967 5061 1 560643.204799003.60 0.00 +S 967 5063 1 560684.204799032.20 0.00 +S 967 5065 1 560725.104799060.90 0.00 +S 967 5067 1 560766.104799089.60 0.00 +S 967 5069 1 560807.104799118.30 0.00 +S 967 5071 1 560848.004799146.90 0.00 +S 967 5073 1 560889.004799175.60 0.00 +S 967 5075 1 560929.904799204.30 0.00 +S 967 5077 1 560970.904799233.00 0.00 +S 967 5079 1 561011.904799261.70 0.00 +S 967 5081 1 561052.804799290.30 0.00 +S 967 5083 1 561093.804799319.00 0.00 +S 967 5085 1 561134.704799347.70 0.00 +S 967 5087 1 561175.704799376.40 0.00 +S 967 5089 1 561216.604799405.10 0.00 +S 967 5091 1 561257.604799433.70 0.00 +S 967 5093 1 561298.604799462.40 0.00 +S 967 5095 1 561339.504799491.10 0.00 +S 967 5097 1 561380.504799519.80 0.00 +S 967 5099 1 561421.404799548.40 0.00 +S 967 5101 1 561462.404799577.10 0.00 +S 967 5103 1 561503.304799605.80 0.00 +S 967 5105 1 561544.304799634.50 0.00 +S 967 5107 1 561585.304799663.20 0.00 +S 967 5109 1 561626.204799691.80 0.00 +S 967 5111 1 561667.204799720.50 0.00 +S 967 5113 1 561708.104799749.20 0.00 +S 967 5115 1 561749.104799777.90 0.00 +S 967 5117 1 561790.004799806.60 0.00 +S 967 5119 1 561831.004799835.20 0.00 +S 967 5121 1 561872.004799863.90 0.00 +S 967 5123 1 561912.904799892.60 0.00 +S 967 5125 1 561953.904799921.30 0.00 +S 967 5127 1 561994.804799950.00 0.00 +S 967 5129 1 562035.804799978.60 0.00 +S 967 5131 1 562076.704800007.30 0.00 +S 967 5133 1 562117.704800036.00 0.00 +S 967 5135 1 562158.704800064.70 0.00 +S 969 4961 1 558624.004797528.70 0.00 +S 969 4963 1 558665.004797557.30 0.00 +S 969 4965 1 558705.904797586.00 0.00 +S 969 4967 1 558746.904797614.70 0.00 +S 969 4969 1 558787.904797643.40 0.00 +S 969 4971 1 558828.804797672.00 0.00 +S 969 4973 1 558869.804797700.70 0.00 +S 969 4975 1 558910.704797729.40 0.00 +S 969 4977 1 558951.704797758.10 0.00 +S 969 4979 1 558992.604797786.80 0.00 +S 969 4981 1 559033.604797815.40 0.00 +S 969 4983 1 559074.604797844.10 0.00 +S 969 4985 1 559115.504797872.80 0.00 +S 969 4987 1 559156.504797901.50 0.00 +S 969 4989 1 559197.404797930.20 0.00 +S 969 4991 1 559238.404797958.80 0.00 +S 969 4993 1 559279.404797987.50 0.00 +S 969 4995 1 559320.304798016.20 0.00 +S 969 4997 1 559361.304798044.90 0.00 +S 969 4999 1 559402.204798073.60 0.00 +S 969 5001 1 559443.204798102.20 0.00 +S 969 5003 1 559484.104798130.90 0.00 +S 969 5005 1 559525.104798159.60 0.00 +S 969 5007 1 559566.104798188.30 0.00 +S 969 5009 1 559607.004798216.90 0.00 +S 969 5011 1 559648.004798245.60 0.00 +S 969 5013 1 559688.904798274.30 0.00 +S 969 5015 1 559729.904798303.00 0.00 +S 969 5017 1 559770.804798331.70 0.00 +S 969 5019 1 559811.804798360.30 0.00 +S 969 5021 1 559852.804798389.00 0.00 +S 969 5023 1 559893.704798417.70 0.00 +S 969 5025 1 559934.704798446.40 0.00 +S 969 5027 1 559975.604798475.10 0.00 +S 969 5029 1 560016.604798503.70 0.00 +S 969 5031 1 560057.504798532.40 0.00 +S 969 5033 1 560098.504798561.10 0.00 +S 969 5035 1 560139.504798589.80 0.00 +S 969 5037 1 560180.404798618.40 0.00 +S 969 5039 1 560221.404798647.10 0.00 +S 969 5041 1 560262.304798675.80 0.00 +S 969 5043 1 560303.304798704.50 0.00 +S 969 5045 1 560344.304798733.20 0.00 +S 969 5047 1 560385.204798761.80 0.00 +S 969 5049 1 560426.204798790.50 0.00 +S 969 5051 1 560467.104798819.20 0.00 +S 969 5053 1 560508.104798847.90 0.00 +S 969 5055 1 560549.004798876.60 0.00 +S 969 5057 1 560590.004798905.20 0.00 +S 969 5059 1 560631.004798933.90 0.00 +S 969 5061 1 560671.904798962.60 0.00 +S 969 5063 1 560712.904798991.30 0.00 +S 969 5065 1 560753.804799020.00 0.00 +S 969 5067 1 560794.804799048.60 0.00 +S 969 5069 1 560835.704799077.30 0.00 +S 969 5071 1 560876.704799106.00 0.00 +S 969 5073 1 560917.704799134.70 0.00 +S 969 5075 1 560958.604799163.30 0.00 +S 969 5077 1 560999.604799192.00 0.00 +S 969 5079 1 561040.504799220.70 0.00 +S 969 5081 1 561081.504799249.40 0.00 +S 969 5083 1 561122.404799278.10 0.00 +S 969 5085 1 561163.404799306.70 0.00 +S 969 5087 1 561204.404799335.40 0.00 +S 969 5089 1 561245.304799364.10 0.00 +S 969 5091 1 561286.304799392.80 0.00 +S 969 5093 1 561327.204799421.50 0.00 +S 969 5095 1 561368.204799450.10 0.00 +S 969 5097 1 561409.104799478.80 0.00 +S 969 5099 1 561450.104799507.50 0.00 +S 969 5101 1 561491.104799536.20 0.00 +S 969 5103 1 561532.004799564.80 0.00 +S 969 5105 1 561573.004799593.50 0.00 +S 969 5107 1 561613.904799622.20 0.00 +S 969 5109 1 561654.904799650.90 0.00 +S 969 5111 1 561695.904799679.60 0.00 +S 969 5113 1 561736.804799708.20 0.00 +S 969 5115 1 561777.804799736.90 0.00 +S 969 5117 1 561818.704799765.60 0.00 +S 969 5119 1 561859.704799794.30 0.00 +S 969 5121 1 561900.604799823.00 0.00 +S 969 5123 1 561941.604799851.60 0.00 +S 969 5125 1 561982.604799880.30 0.00 +S 969 5127 1 562023.504799909.00 0.00 +S 969 5129 1 562064.504799937.70 0.00 +S 969 5131 1 562105.404799966.40 0.00 +S 969 5133 1 562146.404799995.00 0.00 +S 969 5135 1 562187.304800023.70 0.00 +S 971 4961 1 558652.704797487.70 0.00 +S 971 4963 1 558693.704797516.40 0.00 +S 971 4965 1 558734.604797545.10 0.00 +S 971 4967 1 558775.604797573.70 0.00 +S 971 4969 1 558816.504797602.40 0.00 +S 971 4971 1 558857.504797631.10 0.00 +S 971 4973 1 558898.504797659.80 0.00 +S 971 4975 1 558939.404797688.40 0.00 +S 971 4977 1 558980.404797717.10 0.00 +S 971 4979 1 559021.304797745.80 0.00 +S 971 4981 1 559062.304797774.50 0.00 +S 971 4983 1 559103.204797803.20 0.00 +S 971 4985 1 559144.204797831.80 0.00 +S 971 4987 1 559185.204797860.50 0.00 +S 971 4989 1 559226.104797889.20 0.00 +S 971 4991 1 559267.104797917.90 0.00 +S 971 4993 1 559308.004797946.60 0.00 +S 971 4995 1 559349.004797975.20 0.00 +S 971 4997 1 559389.904798003.90 0.00 +S 971 4999 1 559430.904798032.60 0.00 +S 971 5001 1 559471.904798061.30 0.00 +S 971 5003 1 559512.804798090.00 0.00 +S 971 5005 1 559553.804798118.60 0.00 +S 971 5007 1 559594.704798147.30 0.00 +S 971 5009 1 559635.704798176.00 0.00 +S 971 5011 1 559676.604798204.70 0.00 +S 971 5013 1 559717.604798233.30 0.00 +S 971 5015 1 559758.604798262.00 0.00 +S 971 5017 1 559799.504798290.70 0.00 +S 971 5019 1 559840.504798319.40 0.00 +S 971 5021 1 559881.404798348.10 0.00 +S 971 5023 1 559922.404798376.70 0.00 +S 971 5025 1 559963.404798405.40 0.00 +S 971 5027 1 560004.304798434.10 0.00 +S 971 5029 1 560045.304798462.80 0.00 +S 971 5031 1 560086.204798491.50 0.00 +S 971 5033 1 560127.204798520.10 0.00 +S 971 5035 1 560168.104798548.80 0.00 +S 971 5037 1 560209.104798577.50 0.00 +S 971 5039 1 560250.104798606.20 0.00 +S 971 5041 1 560291.004798634.80 0.00 +S 971 5043 1 560332.004798663.50 0.00 +S 971 5045 1 560372.904798692.20 0.00 +S 971 5047 1 560413.904798720.90 0.00 +S 971 5049 1 560454.804798749.60 0.00 +S 971 5051 1 560495.804798778.20 0.00 +S 971 5053 1 560536.804798806.90 0.00 +S 971 5055 1 560577.704798835.60 0.00 +S 971 5057 1 560618.704798864.30 0.00 +S 971 5059 1 560659.604798893.00 0.00 +S 971 5061 1 560700.604798921.60 0.00 +S 971 5063 1 560741.504798950.30 0.00 +S 971 5065 1 560782.504798979.00 0.00 +S 971 5067 1 560823.504799007.70 0.00 +S 971 5069 1 560864.404799036.40 0.00 +S 971 5071 1 560905.404799065.00 0.00 +S 971 5073 1 560946.304799093.70 0.00 +S 971 5075 1 560987.304799122.40 0.00 +S 971 5077 1 561028.304799151.10 0.00 +S 971 5079 1 561069.204799179.70 0.00 +S 971 5081 1 561110.204799208.40 0.00 +S 971 5083 1 561151.104799237.10 0.00 +S 971 5085 1 561192.104799265.80 0.00 +S 971 5087 1 561233.004799294.50 0.00 +S 971 5089 1 561274.004799323.10 0.00 +S 971 5091 1 561315.004799351.80 0.00 +S 971 5093 1 561355.904799380.50 0.00 +S 971 5095 1 561396.904799409.20 0.00 +S 971 5097 1 561437.804799437.90 0.00 +S 971 5099 1 561478.804799466.50 0.00 +S 971 5101 1 561519.704799495.20 0.00 +S 971 5103 1 561560.704799523.90 0.00 +S 971 5105 1 561601.704799552.60 0.00 +S 971 5107 1 561642.604799581.20 0.00 +S 971 5109 1 561683.604799609.90 0.00 +S 971 5111 1 561724.504799638.60 0.00 +S 971 5113 1 561765.504799667.30 0.00 +S 971 5115 1 561806.404799696.00 0.00 +S 971 5117 1 561847.404799724.60 0.00 +S 971 5119 1 561888.404799753.30 0.00 +S 971 5121 1 561929.304799782.00 0.00 +S 971 5123 1 561970.304799810.70 0.00 +S 971 5125 1 562011.204799839.40 0.00 +S 971 5127 1 562052.204799868.00 0.00 +S 971 5129 1 562093.104799896.70 0.00 +S 971 5131 1 562134.104799925.40 0.00 +S 971 5133 1 562175.104799954.10 0.00 +S 971 5135 1 562216.004799982.80 0.00 +S 973 4961 1 558681.404797446.70 0.00 +S 973 4963 1 558722.304797475.40 0.00 +S 973 4965 1 558763.304797504.10 0.00 +S 973 4967 1 558804.304797532.80 0.00 +S 973 4969 1 558845.204797561.50 0.00 +S 973 4971 1 558886.204797590.10 0.00 +S 973 4973 1 558927.104797618.80 0.00 +S 973 4975 1 558968.104797647.50 0.00 +S 973 4977 1 559009.004797676.20 0.00 +S 973 4979 1 559050.004797704.80 0.00 +S 973 4981 1 559091.004797733.50 0.00 +S 973 4983 1 559131.904797762.20 0.00 +S 973 4985 1 559172.904797790.90 0.00 +S 973 4987 1 559213.804797819.60 0.00 +S 973 4989 1 559254.804797848.20 0.00 +S 973 4991 1 559295.804797876.90 0.00 +S 973 4993 1 559336.704797905.60 0.00 +S 973 4995 1 559377.704797934.30 0.00 +S 973 4997 1 559418.604797963.00 0.00 +S 973 4999 1 559459.604797991.60 0.00 +S 973 5001 1 559500.504798020.30 0.00 +S 973 5003 1 559541.504798049.00 0.00 +S 973 5005 1 559582.504798077.70 0.00 +S 973 5007 1 559623.404798106.40 0.00 +S 973 5009 1 559664.404798135.00 0.00 +S 973 5011 1 559705.304798163.70 0.00 +S 973 5013 1 559746.304798192.40 0.00 +S 973 5015 1 559787.204798221.10 0.00 +S 973 5017 1 559828.204798249.70 0.00 +S 973 5019 1 559869.204798278.40 0.00 +S 973 5021 1 559910.104798307.10 0.00 +S 973 5023 1 559951.104798335.80 0.00 +S 973 5025 1 559992.004798364.50 0.00 +S 973 5027 1 560033.004798393.10 0.00 +S 973 5029 1 560073.904798421.80 0.00 +S 973 5031 1 560114.904798450.50 0.00 +S 973 5033 1 560155.904798479.20 0.00 +S 973 5035 1 560196.804798507.90 0.00 +S 973 5037 1 560237.804798536.50 0.00 +S 973 5039 1 560278.704798565.20 0.00 +S 973 5041 1 560319.704798593.90 0.00 +S 973 5043 1 560360.704798622.60 0.00 +S 973 5045 1 560401.604798651.20 0.00 +S 973 5047 1 560442.604798679.90 0.00 +S 973 5049 1 560483.504798708.60 0.00 +S 973 5051 1 560524.504798737.30 0.00 +S 973 5053 1 560565.404798766.00 0.00 +S 973 5055 1 560606.404798794.60 0.00 +S 973 5057 1 560647.404798823.30 0.00 +S 973 5059 1 560688.304798852.00 0.00 +S 973 5061 1 560729.304798880.70 0.00 +S 973 5063 1 560770.204798909.40 0.00 +S 973 5065 1 560811.204798938.00 0.00 +S 973 5067 1 560852.104798966.70 0.00 +S 973 5069 1 560893.104798995.40 0.00 +S 973 5071 1 560934.104799024.10 0.00 +S 973 5073 1 560975.004799052.80 0.00 +S 973 5075 1 561016.004799081.40 0.00 +S 973 5077 1 561056.904799110.10 0.00 +S 973 5079 1 561097.904799138.80 0.00 +S 973 5081 1 561138.804799167.50 0.00 +S 973 5083 1 561179.804799196.10 0.00 +S 973 5085 1 561220.804799224.80 0.00 +S 973 5087 1 561261.704799253.50 0.00 +S 973 5089 1 561302.704799282.20 0.00 +S 973 5091 1 561343.604799310.90 0.00 +S 973 5093 1 561384.604799339.50 0.00 +S 973 5095 1 561425.504799368.20 0.00 +S 973 5097 1 561466.504799396.90 0.00 +S 973 5099 1 561507.504799425.60 0.00 +S 973 5101 1 561548.404799454.30 0.00 +S 973 5103 1 561589.404799482.90 0.00 +S 973 5105 1 561630.304799511.60 0.00 +S 973 5107 1 561671.304799540.30 0.00 +S 973 5109 1 561712.304799569.00 0.00 +S 973 5111 1 561753.204799597.60 0.00 +S 973 5113 1 561794.204799626.30 0.00 +S 973 5115 1 561835.104799655.00 0.00 +S 973 5117 1 561876.104799683.70 0.00 +S 973 5119 1 561917.004799712.40 0.00 +S 973 5121 1 561958.004799741.00 0.00 +S 973 5123 1 561999.004799769.70 0.00 +S 973 5125 1 562039.904799798.40 0.00 +S 973 5127 1 562080.904799827.10 0.00 +S 973 5129 1 562121.804799855.80 0.00 +S 973 5131 1 562162.804799884.40 0.00 +S 973 5133 1 562203.704799913.10 0.00 +S 973 5135 1 562244.704799941.80 0.00 +S 975 4961 1 558710.104797405.80 0.00 +S 975 4963 1 558751.004797434.50 0.00 +S 975 4965 1 558792.004797463.10 0.00 +S 975 4967 1 558832.904797491.80 0.00 +S 975 4969 1 558873.904797520.50 0.00 +S 975 4971 1 558914.904797549.20 0.00 +S 975 4973 1 558955.804797577.90 0.00 +S 975 4975 1 558996.804797606.50 0.00 +S 975 4977 1 559037.704797635.20 0.00 +S 975 4979 1 559078.704797663.90 0.00 +S 975 4981 1 559119.604797692.60 0.00 +S 975 4983 1 559160.604797721.20 0.00 +S 975 4985 1 559201.604797749.90 0.00 +S 975 4987 1 559242.504797778.60 0.00 +S 975 4989 1 559283.504797807.30 0.00 +S 975 4991 1 559324.404797836.00 0.00 +S 975 4993 1 559365.404797864.60 0.00 +S 975 4995 1 559406.304797893.30 0.00 +S 975 4997 1 559447.304797922.00 0.00 +S 975 4999 1 559488.304797950.70 0.00 +S 975 5001 1 559529.204797979.40 0.00 +S 975 5003 1 559570.204798008.00 0.00 +S 975 5005 1 559611.104798036.70 0.00 +S 975 5007 1 559652.104798065.40 0.00 +S 975 5009 1 559693.004798094.10 0.00 +S 975 5011 1 559734.004798122.80 0.00 +S 975 5013 1 559775.004798151.40 0.00 +S 975 5015 1 559815.904798180.10 0.00 +S 975 5017 1 559856.904798208.80 0.00 +S 975 5019 1 559897.804798237.50 0.00 +S 975 5021 1 559938.804798266.10 0.00 +S 975 5023 1 559979.804798294.80 0.00 +S 975 5025 1 560020.704798323.50 0.00 +S 975 5027 1 560061.704798352.20 0.00 +S 975 5029 1 560102.604798380.90 0.00 +S 975 5031 1 560143.604798409.50 0.00 +S 975 5033 1 560184.504798438.20 0.00 +S 975 5035 1 560225.504798466.90 0.00 +S 975 5037 1 560266.504798495.60 0.00 +S 975 5039 1 560307.404798524.30 0.00 +S 975 5041 1 560348.404798552.90 0.00 +S 975 5043 1 560389.304798581.60 0.00 +S 975 5045 1 560430.304798610.30 0.00 +S 975 5047 1 560471.204798639.00 0.00 +S 975 5049 1 560512.204798667.60 0.00 +S 975 5051 1 560553.204798696.30 0.00 +S 975 5053 1 560594.104798725.00 0.00 +S 975 5055 1 560635.104798753.70 0.00 +S 975 5057 1 560676.004798782.40 0.00 +S 975 5059 1 560717.004798811.00 0.00 +S 975 5061 1 560757.904798839.70 0.00 +S 975 5063 1 560798.904798868.40 0.00 +S 975 5065 1 560839.904798897.10 0.00 +S 975 5067 1 560880.804798925.80 0.00 +S 975 5069 1 560921.804798954.40 0.00 +S 975 5071 1 560962.704798983.10 0.00 +S 975 5073 1 561003.704799011.80 0.00 +S 975 5075 1 561044.704799040.50 0.00 +S 975 5077 1 561085.604799069.20 0.00 +S 975 5079 1 561126.604799097.80 0.00 +S 975 5081 1 561167.504799126.50 0.00 +S 975 5083 1 561208.504799155.20 0.00 +S 975 5085 1 561249.404799183.90 0.00 +S 975 5087 1 561290.404799212.50 0.00 +S 975 5089 1 561331.404799241.20 0.00 +S 975 5091 1 561372.304799269.90 0.00 +S 975 5093 1 561413.304799298.60 0.00 +S 975 5095 1 561454.204799327.30 0.00 +S 975 5097 1 561495.204799355.90 0.00 +S 975 5099 1 561536.104799384.60 0.00 +S 975 5101 1 561577.104799413.30 0.00 +S 975 5103 1 561618.104799442.00 0.00 +S 975 5105 1 561659.004799470.70 0.00 +S 975 5107 1 561700.004799499.30 0.00 +S 975 5109 1 561740.904799528.00 0.00 +S 975 5111 1 561781.904799556.70 0.00 +S 975 5113 1 561822.804799585.40 0.00 +S 975 5115 1 561863.804799614.00 0.00 +S 975 5117 1 561904.804799642.70 0.00 +S 975 5119 1 561945.704799671.40 0.00 +S 975 5121 1 561986.704799700.10 0.00 +S 975 5123 1 562027.604799728.80 0.00 +S 975 5125 1 562068.604799757.40 0.00 +S 975 5127 1 562109.504799786.10 0.00 +S 975 5129 1 562150.504799814.80 0.00 +S 975 5131 1 562191.504799843.50 0.00 +S 975 5133 1 562232.404799872.20 0.00 +S 975 5135 1 562273.404799900.80 0.00 +S 977 4961 1 558738.704797364.80 0.00 +S 977 4963 1 558779.704797393.50 0.00 +S 977 4965 1 558820.704797422.20 0.00 +S 977 4967 1 558861.604797450.90 0.00 +S 977 4969 1 558902.604797479.50 0.00 +S 977 4971 1 558943.504797508.20 0.00 +S 977 4973 1 558984.504797536.90 0.00 +S 977 4975 1 559025.404797565.60 0.00 +S 977 4977 1 559066.404797594.30 0.00 +S 977 4979 1 559107.404797622.90 0.00 +S 977 4981 1 559148.304797651.60 0.00 +S 977 4983 1 559189.304797680.30 0.00 +S 977 4985 1 559230.204797709.00 0.00 +S 977 4987 1 559271.204797737.60 0.00 +S 977 4989 1 559312.204797766.30 0.00 +S 977 4991 1 559353.104797795.00 0.00 +S 977 4993 1 559394.104797823.70 0.00 +S 977 4995 1 559435.004797852.40 0.00 +S 977 4997 1 559476.004797881.00 0.00 +S 977 4999 1 559516.904797909.70 0.00 +S 977 5001 1 559557.904797938.40 0.00 +S 977 5003 1 559598.904797967.10 0.00 +S 977 5005 1 559639.804797995.80 0.00 +S 977 5007 1 559680.804798024.40 0.00 +S 977 5009 1 559721.704798053.10 0.00 +S 977 5011 1 559762.704798081.80 0.00 +S 977 5013 1 559803.604798110.50 0.00 +S 977 5015 1 559844.604798139.20 0.00 +S 977 5017 1 559885.604798167.80 0.00 +S 977 5019 1 559926.504798196.50 0.00 +S 977 5021 1 559967.504798225.20 0.00 +S 977 5023 1 560008.404798253.90 0.00 +S 977 5025 1 560049.404798282.50 0.00 +S 977 5027 1 560090.304798311.20 0.00 +S 977 5029 1 560131.304798339.90 0.00 +S 977 5031 1 560172.304798368.60 0.00 +S 977 5033 1 560213.204798397.30 0.00 +S 977 5035 1 560254.204798425.90 0.00 +S 977 5037 1 560295.104798454.60 0.00 +S 977 5039 1 560336.104798483.30 0.00 +S 977 5041 1 560377.104798512.00 0.00 +S 977 5043 1 560418.004798540.70 0.00 +S 977 5045 1 560459.004798569.30 0.00 +S 977 5047 1 560499.904798598.00 0.00 +S 977 5049 1 560540.904798626.70 0.00 +S 977 5051 1 560581.804798655.40 0.00 +S 977 5053 1 560622.804798684.00 0.00 +S 977 5055 1 560663.804798712.70 0.00 +S 977 5057 1 560704.704798741.40 0.00 +S 977 5059 1 560745.704798770.10 0.00 +S 977 5061 1 560786.604798798.80 0.00 +S 977 5063 1 560827.604798827.40 0.00 +S 977 5065 1 560868.504798856.10 0.00 +S 977 5067 1 560909.504798884.80 0.00 +S 977 5069 1 560950.504798913.50 0.00 +S 977 5071 1 560991.404798942.20 0.00 +S 977 5073 1 561032.404798970.80 0.00 +S 977 5075 1 561073.304798999.50 0.00 +S 977 5077 1 561114.304799028.20 0.00 +S 977 5079 1 561155.204799056.90 0.00 +S 977 5081 1 561196.204799085.60 0.00 +S 977 5083 1 561237.204799114.20 0.00 +S 977 5085 1 561278.104799142.90 0.00 +S 977 5087 1 561319.104799171.60 0.00 +S 977 5089 1 561360.004799200.30 0.00 +S 977 5091 1 561401.004799228.90 0.00 +S 977 5093 1 561441.904799257.60 0.00 +S 977 5095 1 561482.904799286.30 0.00 +S 977 5097 1 561523.904799315.00 0.00 +S 977 5099 1 561564.804799343.70 0.00 +S 977 5101 1 561605.804799372.30 0.00 +S 977 5103 1 561646.704799401.00 0.00 +S 977 5105 1 561687.704799429.70 0.00 +S 977 5107 1 561728.704799458.40 0.00 +S 977 5109 1 561769.604799487.10 0.00 +S 977 5111 1 561810.604799515.70 0.00 +S 977 5113 1 561851.504799544.40 0.00 +S 977 5115 1 561892.504799573.10 0.00 +S 977 5117 1 561933.404799601.80 0.00 +S 977 5119 1 561974.404799630.40 0.00 +S 977 5121 1 562015.404799659.10 0.00 +S 977 5123 1 562056.304799687.80 0.00 +S 977 5125 1 562097.304799716.50 0.00 +S 977 5127 1 562138.204799745.20 0.00 +S 977 5129 1 562179.204799773.80 0.00 +S 977 5131 1 562220.104799802.50 0.00 +S 977 5133 1 562261.104799831.20 0.00 +S 977 5135 1 562302.104799859.90 0.00 +S 979 4961 1 558767.404797323.90 0.00 +S 979 4963 1 558808.404797352.50 0.00 +S 979 4965 1 558849.304797381.20 0.00 +S 979 4967 1 558890.304797409.90 0.00 +S 979 4969 1 558931.304797438.60 0.00 +S 979 4971 1 558972.204797467.30 0.00 +S 979 4973 1 559013.204797495.90 0.00 +S 979 4975 1 559054.104797524.60 0.00 +S 979 4977 1 559095.104797553.30 0.00 +S 979 4979 1 559136.004797582.00 0.00 +S 979 4981 1 559177.004797610.70 0.00 +S 979 4983 1 559218.004797639.30 0.00 +S 979 4985 1 559258.904797668.00 0.00 +S 979 4987 1 559299.904797696.70 0.00 +S 979 4989 1 559340.804797725.40 0.00 +S 979 4991 1 559381.804797754.00 0.00 +S 979 4993 1 559422.704797782.70 0.00 +S 979 4995 1 559463.704797811.40 0.00 +S 979 4997 1 559504.704797840.10 0.00 +S 979 4999 1 559545.604797868.80 0.00 +S 979 5001 1 559586.604797897.40 0.00 +S 979 5003 1 559627.504797926.10 0.00 +S 979 5005 1 559668.504797954.80 0.00 +S 979 5007 1 559709.404797983.50 0.00 +S 979 5009 1 559750.404798012.20 0.00 +S 979 5011 1 559791.404798040.80 0.00 +S 979 5013 1 559832.304798069.50 0.00 +S 979 5015 1 559873.304798098.20 0.00 +S 979 5017 1 559914.204798126.90 0.00 +S 979 5019 1 559955.204798155.60 0.00 +S 979 5021 1 559996.204798184.20 0.00 +S 979 5023 1 560037.104798212.90 0.00 +S 979 5025 1 560078.104798241.60 0.00 +S 979 5027 1 560119.004798270.30 0.00 +S 979 5029 1 560160.004798298.90 0.00 +S 979 5031 1 560200.904798327.60 0.00 +S 979 5033 1 560241.904798356.30 0.00 +S 979 5035 1 560282.904798385.00 0.00 +S 979 5037 1 560323.804798413.70 0.00 +S 979 5039 1 560364.804798442.30 0.00 +S 979 5041 1 560405.704798471.00 0.00 +S 979 5043 1 560446.704798499.70 0.00 +S 979 5045 1 560487.604798528.40 0.00 +S 979 5047 1 560528.604798557.10 0.00 +S 979 5049 1 560569.604798585.70 0.00 +S 979 5051 1 560610.504798614.40 0.00 +S 979 5053 1 560651.504798643.10 0.00 +S 979 5055 1 560692.404798671.80 0.00 +S 979 5057 1 560733.404798700.40 0.00 +S 979 5059 1 560774.304798729.10 0.00 +S 979 5061 1 560815.304798757.80 0.00 +S 979 5063 1 560856.304798786.50 0.00 +S 979 5065 1 560897.204798815.20 0.00 +S 979 5067 1 560938.204798843.80 0.00 +S 979 5069 1 560979.104798872.50 0.00 +S 979 5071 1 561020.104798901.20 0.00 +S 979 5073 1 561061.104798929.90 0.00 +S 979 5075 1 561102.004798958.60 0.00 +S 979 5077 1 561143.004798987.20 0.00 +S 979 5079 1 561183.904799015.90 0.00 +S 979 5081 1 561224.904799044.60 0.00 +S 979 5083 1 561265.804799073.30 0.00 +S 979 5085 1 561306.804799102.00 0.00 +S 979 5087 1 561347.804799130.60 0.00 +S 979 5089 1 561388.704799159.30 0.00 +S 979 5091 1 561429.704799188.00 0.00 +S 979 5093 1 561470.604799216.70 0.00 +S 979 5095 1 561511.604799245.30 0.00 +S 979 5097 1 561552.504799274.00 0.00 +S 979 5099 1 561593.504799302.70 0.00 +S 979 5101 1 561634.504799331.40 0.00 +S 979 5103 1 561675.404799360.10 0.00 +S 979 5105 1 561716.404799388.70 0.00 +S 979 5107 1 561757.304799417.40 0.00 +S 979 5109 1 561798.304799446.10 0.00 +S 979 5111 1 561839.204799474.80 0.00 +S 979 5113 1 561880.204799503.50 0.00 +S 979 5115 1 561921.204799532.10 0.00 +S 979 5117 1 561962.104799560.80 0.00 +S 979 5119 1 562003.104799589.50 0.00 +S 979 5121 1 562044.004799618.20 0.00 +S 979 5123 1 562085.004799646.80 0.00 +S 979 5125 1 562125.904799675.50 0.00 +S 979 5127 1 562166.904799704.20 0.00 +S 979 5129 1 562207.904799732.90 0.00 +S 979 5131 1 562248.804799761.60 0.00 +S 979 5133 1 562289.804799790.20 0.00 +S 979 5135 1 562330.704799818.90 0.00 +S 981 4961 1 558796.104797282.90 0.00 +S 981 4963 1 558837.104797311.60 0.00 +S 981 4965 1 558878.004797340.30 0.00 +S 981 4967 1 558919.004797368.90 0.00 +S 981 4969 1 558959.904797397.60 0.00 +S 981 4971 1 559000.904797426.30 0.00 +S 981 4973 1 559041.804797455.00 0.00 +S 981 4975 1 559082.804797483.70 0.00 +S 981 4977 1 559123.804797512.30 0.00 +S 981 4979 1 559164.704797541.00 0.00 +S 981 4981 1 559205.704797569.70 0.00 +S 981 4983 1 559246.604797598.40 0.00 +S 981 4985 1 559287.604797627.10 0.00 +S 981 4987 1 559328.604797655.70 0.00 +S 981 4989 1 559369.504797684.40 0.00 +S 981 4991 1 559410.504797713.10 0.00 +S 981 4993 1 559451.404797741.80 0.00 +S 981 4995 1 559492.404797770.40 0.00 +S 981 4997 1 559533.304797799.10 0.00 +S 981 4999 1 559574.304797827.80 0.00 +S 981 5001 1 559615.304797856.50 0.00 +S 981 5003 1 559656.204797885.20 0.00 +S 981 5005 1 559697.204797913.80 0.00 +S 981 5007 1 559738.104797942.50 0.00 +S 981 5009 1 559779.104797971.20 0.00 +S 981 5011 1 559820.004797999.90 0.00 +S 981 5013 1 559861.004798028.60 0.00 +S 981 5015 1 559902.004798057.20 0.00 +S 981 5017 1 559942.904798085.90 0.00 +S 981 5019 1 559983.904798114.60 0.00 +S 981 5021 1 560024.804798143.30 0.00 +S 981 5023 1 560065.804798172.00 0.00 +S 981 5025 1 560106.704798200.60 0.00 +S 981 5027 1 560147.704798229.30 0.00 +S 981 5029 1 560188.704798258.00 0.00 +S 981 5031 1 560229.604798286.70 0.00 +S 981 5033 1 560270.604798315.30 0.00 +S 981 5035 1 560311.504798344.00 0.00 +S 981 5037 1 560352.504798372.70 0.00 +S 981 5039 1 560393.504798401.40 0.00 +S 981 5041 1 560434.404798430.10 0.00 +S 981 5043 1 560475.404798458.70 0.00 +S 981 5045 1 560516.304798487.40 0.00 +S 981 5047 1 560557.304798516.10 0.00 +S 981 5049 1 560598.204798544.80 0.00 +S 981 5051 1 560639.204798573.50 0.00 +S 981 5053 1 560680.204798602.10 0.00 +S 981 5055 1 560721.104798630.80 0.00 +S 981 5057 1 560762.104798659.50 0.00 +S 981 5059 1 560803.004798688.20 0.00 +S 981 5061 1 560844.004798716.80 0.00 +S 981 5063 1 560884.904798745.50 0.00 +S 981 5065 1 560925.904798774.20 0.00 +S 981 5067 1 560966.904798802.90 0.00 +S 981 5069 1 561007.804798831.60 0.00 +S 981 5071 1 561048.804798860.20 0.00 +S 981 5073 1 561089.704798888.90 0.00 +S 981 5075 1 561130.704798917.60 0.00 +S 981 5077 1 561171.604798946.30 0.00 +S 981 5079 1 561212.604798975.00 0.00 +S 981 5081 1 561253.604799003.60 0.00 +S 981 5083 1 561294.504799032.30 0.00 +S 981 5085 1 561335.504799061.00 0.00 +S 981 5087 1 561376.404799089.70 0.00 +S 981 5089 1 561417.404799118.40 0.00 +S 981 5091 1 561458.304799147.00 0.00 +S 981 5093 1 561499.304799175.70 0.00 +S 981 5095 1 561540.304799204.40 0.00 +S 981 5097 1 561581.204799233.10 0.00 +S 981 5099 1 561622.204799261.70 0.00 +S 981 5101 1 561663.104799290.40 0.00 +S 981 5103 1 561704.104799319.10 0.00 +S 981 5105 1 561745.104799347.80 0.00 +S 981 5107 1 561786.004799376.50 0.00 +S 981 5109 1 561827.004799405.10 0.00 +S 981 5111 1 561867.904799433.80 0.00 +S 981 5113 1 561908.904799462.50 0.00 +S 981 5115 1 561949.804799491.20 0.00 +S 981 5117 1 561990.804799519.90 0.00 +S 981 5119 1 562031.804799548.50 0.00 +S 981 5121 1 562072.704799577.20 0.00 +S 981 5123 1 562113.704799605.90 0.00 +S 981 5125 1 562154.604799634.60 0.00 +S 981 5127 1 562195.604799663.20 0.00 +S 981 5129 1 562236.504799691.90 0.00 +S 981 5131 1 562277.504799720.60 0.00 +S 981 5133 1 562318.504799749.30 0.00 +S 981 5135 1 562359.404799778.00 0.00 +S 983 4961 1 558824.804797242.00 0.00 +S 983 4963 1 558865.704797270.60 0.00 +S 983 4965 1 558906.704797299.30 0.00 +S 983 4967 1 558947.704797328.00 0.00 +S 983 4969 1 558988.604797356.70 0.00 +S 983 4971 1 559029.604797385.30 0.00 +S 983 4973 1 559070.504797414.00 0.00 +S 983 4975 1 559111.504797442.70 0.00 +S 983 4977 1 559152.404797471.40 0.00 +S 983 4979 1 559193.404797500.10 0.00 +S 983 4981 1 559234.404797528.70 0.00 +S 983 4983 1 559275.304797557.40 0.00 +S 983 4985 1 559316.304797586.10 0.00 +S 983 4987 1 559357.204797614.80 0.00 +S 983 4989 1 559398.204797643.50 0.00 +S 983 4991 1 559439.104797672.10 0.00 +S 983 4993 1 559480.104797700.80 0.00 +S 983 4995 1 559521.104797729.50 0.00 +S 983 4997 1 559562.004797758.20 0.00 +S 983 4999 1 559603.004797786.80 0.00 +S 983 5001 1 559643.904797815.50 0.00 +S 983 5003 1 559684.904797844.20 0.00 +S 983 5005 1 559725.804797872.90 0.00 +S 983 5007 1 559766.804797901.60 0.00 +S 983 5009 1 559807.804797930.20 0.00 +S 983 5011 1 559848.704797958.90 0.00 +S 983 5013 1 559889.704797987.60 0.00 +S 983 5015 1 559930.604798016.30 0.00 +S 983 5017 1 559971.604798045.00 0.00 +S 983 5019 1 560012.604798073.60 0.00 +S 983 5021 1 560053.504798102.30 0.00 +S 983 5023 1 560094.504798131.00 0.00 +S 983 5025 1 560135.404798159.70 0.00 +S 983 5027 1 560176.404798188.40 0.00 +S 983 5029 1 560217.304798217.00 0.00 +S 983 5031 1 560258.304798245.70 0.00 +S 983 5033 1 560299.304798274.40 0.00 +S 983 5035 1 560340.204798303.10 0.00 +S 983 5037 1 560381.204798331.70 0.00 +S 983 5039 1 560422.104798360.40 0.00 +S 983 5041 1 560463.104798389.10 0.00 +S 983 5043 1 560504.004798417.80 0.00 +S 983 5045 1 560545.004798446.50 0.00 +S 983 5047 1 560586.004798475.10 0.00 +S 983 5049 1 560626.904798503.80 0.00 +S 983 5051 1 560667.904798532.50 0.00 +S 983 5053 1 560708.804798561.20 0.00 +S 983 5055 1 560749.804798589.90 0.00 +S 983 5057 1 560790.704798618.50 0.00 +S 983 5059 1 560831.704798647.20 0.00 +S 983 5061 1 560872.704798675.90 0.00 +S 983 5063 1 560913.604798704.60 0.00 +S 983 5065 1 560954.604798733.20 0.00 +S 983 5067 1 560995.504798761.90 0.00 +S 983 5069 1 561036.504798790.60 0.00 +S 983 5071 1 561077.504798819.30 0.00 +S 983 5073 1 561118.404798848.00 0.00 +S 983 5075 1 561159.404798876.60 0.00 +S 983 5077 1 561200.304798905.30 0.00 +S 983 5079 1 561241.304798934.00 0.00 +S 983 5081 1 561282.204798962.70 0.00 +S 983 5083 1 561323.204798991.40 0.00 +S 983 5085 1 561364.204799020.00 0.00 +S 983 5087 1 561405.104799048.70 0.00 +S 983 5089 1 561446.104799077.40 0.00 +S 983 5091 1 561487.004799106.10 0.00 +S 983 5093 1 561528.004799134.80 0.00 +S 983 5095 1 561568.904799163.40 0.00 +S 983 5097 1 561609.904799192.10 0.00 +S 983 5099 1 561650.904799220.80 0.00 +S 983 5101 1 561691.804799249.50 0.00 +S 983 5103 1 561732.804799278.10 0.00 +S 983 5105 1 561773.704799306.80 0.00 +S 983 5107 1 561814.704799335.50 0.00 +S 983 5109 1 561855.604799364.20 0.00 +S 983 5111 1 561896.604799392.90 0.00 +S 983 5113 1 561937.604799421.50 0.00 +S 983 5115 1 561978.504799450.20 0.00 +S 983 5117 1 562019.504799478.90 0.00 +S 983 5119 1 562060.404799507.60 0.00 +S 983 5121 1 562101.404799536.30 0.00 +S 983 5123 1 562142.304799564.90 0.00 +S 983 5125 1 562183.304799593.60 0.00 +S 983 5127 1 562224.304799622.30 0.00 +S 983 5129 1 562265.204799651.00 0.00 +S 983 5131 1 562306.204799679.60 0.00 +S 983 5133 1 562347.104799708.30 0.00 +S 983 5135 1 562388.104799737.00 0.00 +S 985 4961 1 558853.504797201.00 0.00 +S 985 4963 1 558894.404797229.70 0.00 +S 985 4965 1 558935.404797258.40 0.00 +S 985 4967 1 558976.304797287.00 0.00 +S 985 4969 1 559017.304797315.70 0.00 +S 985 4971 1 559058.204797344.40 0.00 +S 985 4973 1 559099.204797373.10 0.00 +S 985 4975 1 559140.204797401.70 0.00 +S 985 4977 1 559181.104797430.40 0.00 +S 985 4979 1 559222.104797459.10 0.00 +S 985 4981 1 559263.004797487.80 0.00 +S 985 4983 1 559304.004797516.50 0.00 +S 985 4985 1 559345.004797545.10 0.00 +S 985 4987 1 559385.904797573.80 0.00 +S 985 4989 1 559426.904797602.50 0.00 +S 985 4991 1 559467.804797631.20 0.00 +S 985 4993 1 559508.804797659.90 0.00 +S 985 4995 1 559549.704797688.50 0.00 +S 985 4997 1 559590.704797717.20 0.00 +S 985 4999 1 559631.704797745.90 0.00 +S 985 5001 1 559672.604797774.60 0.00 +S 985 5003 1 559713.604797803.20 0.00 +S 985 5005 1 559754.504797831.90 0.00 +S 985 5007 1 559795.504797860.60 0.00 +S 985 5009 1 559836.404797889.30 0.00 +S 985 5011 1 559877.404797918.00 0.00 +S 985 5013 1 559918.404797946.60 0.00 +S 985 5015 1 559959.304797975.30 0.00 +S 985 5017 1 560000.304798004.00 0.00 +S 985 5019 1 560041.204798032.70 0.00 +S 985 5021 1 560082.204798061.40 0.00 +S 985 5023 1 560123.104798090.00 0.00 +S 985 5025 1 560164.104798118.70 0.00 +S 985 5027 1 560205.104798147.40 0.00 +S 985 5029 1 560246.004798176.10 0.00 +S 985 5031 1 560287.004798204.80 0.00 +S 985 5033 1 560327.904798233.40 0.00 +S 985 5035 1 560368.904798262.10 0.00 +S 985 5037 1 560409.904798290.80 0.00 +S 985 5039 1 560450.804798319.50 0.00 +S 985 5041 1 560491.804798348.10 0.00 +S 985 5043 1 560532.704798376.80 0.00 +S 985 5045 1 560573.704798405.50 0.00 +S 985 5047 1 560614.604798434.20 0.00 +S 985 5049 1 560655.604798462.90 0.00 +S 985 5051 1 560696.604798491.50 0.00 +S 985 5053 1 560737.504798520.20 0.00 +S 985 5055 1 560778.504798548.90 0.00 +S 985 5057 1 560819.404798577.60 0.00 +S 985 5059 1 560860.404798606.30 0.00 +S 985 5061 1 560901.304798634.90 0.00 +S 985 5063 1 560942.304798663.60 0.00 +S 985 5065 1 560983.304798692.30 0.00 +S 985 5067 1 561024.204798721.00 0.00 +S 985 5069 1 561065.204798749.60 0.00 +S 985 5071 1 561106.104798778.30 0.00 +S 985 5073 1 561147.104798807.00 0.00 +S 985 5075 1 561188.004798835.70 0.00 +S 985 5077 1 561229.004798864.40 0.00 +S 985 5079 1 561270.004798893.00 0.00 +S 985 5081 1 561310.904798921.70 0.00 +S 985 5083 1 561351.904798950.40 0.00 +S 985 5085 1 561392.804798979.10 0.00 +S 985 5087 1 561433.804799007.80 0.00 +S 985 5089 1 561474.704799036.40 0.00 +S 985 5091 1 561515.704799065.10 0.00 +S 985 5093 1 561556.704799093.80 0.00 +S 985 5095 1 561597.604799122.50 0.00 +S 985 5097 1 561638.604799151.20 0.00 +S 985 5099 1 561679.504799179.80 0.00 +S 985 5101 1 561720.504799208.50 0.00 +S 985 5103 1 561761.504799237.20 0.00 +S 985 5105 1 561802.404799265.90 0.00 +S 985 5107 1 561843.404799294.50 0.00 +S 985 5109 1 561884.304799323.20 0.00 +S 985 5111 1 561925.304799351.90 0.00 +S 985 5113 1 561966.204799380.60 0.00 +S 985 5115 1 562007.204799409.30 0.00 +S 985 5117 1 562048.204799437.90 0.00 +S 985 5119 1 562089.104799466.60 0.00 +S 985 5121 1 562130.104799495.30 0.00 +S 985 5123 1 562171.004799524.00 0.00 +S 985 5125 1 562212.004799552.70 0.00 +S 985 5127 1 562252.904799581.30 0.00 +S 985 5129 1 562293.904799610.00 0.00 +S 985 5131 1 562334.904799638.70 0.00 +S 985 5133 1 562375.804799667.40 0.00 +S 985 5135 1 562416.804799696.00 0.00 +S 987 4961 1 558882.104797160.00 0.00 +S 987 4963 1 558923.104797188.70 0.00 +S 987 4965 1 558964.104797217.40 0.00 +S 987 4967 1 559005.004797246.10 0.00 +S 987 4969 1 559046.004797274.80 0.00 +S 987 4971 1 559086.904797303.40 0.00 +S 987 4973 1 559127.904797332.10 0.00 +S 987 4975 1 559168.804797360.80 0.00 +S 987 4977 1 559209.804797389.50 0.00 +S 987 4979 1 559250.804797418.10 0.00 +S 987 4981 1 559291.704797446.80 0.00 +S 987 4983 1 559332.704797475.50 0.00 +S 987 4985 1 559373.604797504.20 0.00 +S 987 4987 1 559414.604797532.90 0.00 +S 987 4989 1 559455.504797561.50 0.00 +S 987 4991 1 559496.504797590.20 0.00 +S 987 4993 1 559537.504797618.90 0.00 +S 987 4995 1 559578.404797647.60 0.00 +S 987 4997 1 559619.404797676.30 0.00 +S 987 4999 1 559660.304797704.90 0.00 +S 987 5001 1 559701.304797733.60 0.00 +S 987 5003 1 559742.204797762.30 0.00 +S 987 5005 1 559783.204797791.00 0.00 +S 987 5007 1 559824.204797819.60 0.00 +S 987 5009 1 559865.104797848.30 0.00 +S 987 5011 1 559906.104797877.00 0.00 +S 987 5013 1 559947.004797905.70 0.00 +S 987 5015 1 559988.004797934.40 0.00 +S 987 5017 1 560029.004797963.00 0.00 +S 987 5019 1 560069.904797991.70 0.00 +S 987 5021 1 560110.904798020.40 0.00 +S 987 5023 1 560151.804798049.10 0.00 +S 987 5025 1 560192.804798077.80 0.00 +S 987 5027 1 560233.704798106.40 0.00 +S 987 5029 1 560274.704798135.10 0.00 +S 987 5031 1 560315.704798163.80 0.00 +S 987 5033 1 560356.604798192.50 0.00 +S 987 5035 1 560397.604798221.20 0.00 +S 987 5037 1 560438.504798249.80 0.00 +S 987 5039 1 560479.504798278.50 0.00 +S 987 5041 1 560520.404798307.20 0.00 +S 987 5043 1 560561.404798335.90 0.00 +S 987 5045 1 560602.404798364.50 0.00 +S 987 5047 1 560643.304798393.20 0.00 +S 987 5049 1 560684.304798421.90 0.00 +S 987 5051 1 560725.204798450.60 0.00 +S 987 5053 1 560766.204798479.30 0.00 +S 987 5055 1 560807.104798507.90 0.00 +S 987 5057 1 560848.104798536.60 0.00 +S 987 5059 1 560889.104798565.30 0.00 +S 987 5061 1 560930.004798594.00 0.00 +S 987 5063 1 560971.004798622.70 0.00 +S 987 5065 1 561011.904798651.30 0.00 +S 987 5067 1 561052.904798680.00 0.00 +S 987 5069 1 561093.904798708.70 0.00 +S 987 5071 1 561134.804798737.40 0.00 +S 987 5073 1 561175.804798766.00 0.00 +S 987 5075 1 561216.704798794.70 0.00 +S 987 5077 1 561257.704798823.40 0.00 +S 987 5079 1 561298.604798852.10 0.00 +S 987 5081 1 561339.604798880.80 0.00 +S 987 5083 1 561380.604798909.40 0.00 +S 987 5085 1 561421.504798938.10 0.00 +S 987 5087 1 561462.504798966.80 0.00 +S 987 5089 1 561503.404798995.50 0.00 +S 987 5091 1 561544.404799024.20 0.00 +S 987 5093 1 561585.304799052.80 0.00 +S 987 5095 1 561626.304799081.50 0.00 +S 987 5097 1 561667.304799110.20 0.00 +S 987 5099 1 561708.204799138.90 0.00 +S 987 5101 1 561749.204799167.60 0.00 +S 987 5103 1 561790.104799196.20 0.00 +S 987 5105 1 561831.104799224.90 0.00 +S 987 5107 1 561872.004799253.60 0.00 +S 987 5109 1 561913.004799282.30 0.00 +S 987 5111 1 561954.004799310.90 0.00 +S 987 5113 1 561994.904799339.60 0.00 +S 987 5115 1 562035.904799368.30 0.00 +S 987 5117 1 562076.804799397.00 0.00 +S 987 5119 1 562117.804799425.70 0.00 +S 987 5121 1 562158.704799454.30 0.00 +S 987 5123 1 562199.704799483.00 0.00 +S 987 5125 1 562240.704799511.70 0.00 +S 987 5127 1 562281.604799540.40 0.00 +S 987 5129 1 562322.604799569.10 0.00 +S 987 5131 1 562363.504799597.70 0.00 +S 987 5133 1 562404.504799626.40 0.00 +S 987 5135 1 562445.504799655.10 0.00 +S 989 4961 1 558910.804797119.10 0.00 +S 989 4963 1 558951.804797147.80 0.00 +S 989 4965 1 558992.704797176.40 0.00 +S 989 4967 1 559033.704797205.10 0.00 +S 989 4969 1 559074.604797233.80 0.00 +S 989 4971 1 559115.604797262.50 0.00 +S 989 4973 1 559156.604797291.20 0.00 +S 989 4975 1 559197.504797319.80 0.00 +S 989 4977 1 559238.504797348.50 0.00 +S 989 4979 1 559279.404797377.20 0.00 +S 989 4981 1 559320.404797405.90 0.00 +S 989 4983 1 559361.404797434.50 0.00 +S 989 4985 1 559402.304797463.20 0.00 +S 989 4987 1 559443.304797491.90 0.00 +S 989 4989 1 559484.204797520.60 0.00 +S 989 4991 1 559525.204797549.30 0.00 +S 989 4993 1 559566.104797577.90 0.00 +S 989 4995 1 559607.104797606.60 0.00 +S 989 4997 1 559648.104797635.30 0.00 +S 989 4999 1 559689.004797664.00 0.00 +S 989 5001 1 559730.004797692.70 0.00 +S 989 5003 1 559770.904797721.30 0.00 +S 989 5005 1 559811.904797750.00 0.00 +S 989 5007 1 559852.804797778.70 0.00 +S 989 5009 1 559893.804797807.40 0.00 +S 989 5011 1 559934.804797836.00 0.00 +S 989 5013 1 559975.704797864.70 0.00 +S 989 5015 1 560016.704797893.40 0.00 +S 989 5017 1 560057.604797922.10 0.00 +S 989 5019 1 560098.604797950.80 0.00 +S 989 5021 1 560139.504797979.40 0.00 +S 989 5023 1 560180.504798008.10 0.00 +S 989 5025 1 560221.504798036.80 0.00 +S 989 5027 1 560262.404798065.50 0.00 +S 989 5029 1 560303.404798094.20 0.00 +S 989 5031 1 560344.304798122.80 0.00 +S 989 5033 1 560385.304798151.50 0.00 +S 989 5035 1 560426.304798180.20 0.00 +S 989 5037 1 560467.204798208.90 0.00 +S 989 5039 1 560508.204798237.60 0.00 +S 989 5041 1 560549.104798266.20 0.00 +S 989 5043 1 560590.104798294.90 0.00 +S 989 5045 1 560631.004798323.60 0.00 +S 989 5047 1 560672.004798352.30 0.00 +S 989 5049 1 560713.004798380.90 0.00 +S 989 5051 1 560753.904798409.60 0.00 +S 989 5053 1 560794.904798438.30 0.00 +S 989 5055 1 560835.804798467.00 0.00 +S 989 5057 1 560876.804798495.70 0.00 +S 989 5059 1 560917.704798524.30 0.00 +S 989 5061 1 560958.704798553.00 0.00 +S 989 5063 1 560999.704798581.70 0.00 +S 989 5065 1 561040.604798610.40 0.00 +S 989 5067 1 561081.604798639.10 0.00 +S 989 5069 1 561122.504798667.70 0.00 +S 989 5071 1 561163.504798696.40 0.00 +S 989 5073 1 561204.404798725.10 0.00 +S 989 5075 1 561245.404798753.80 0.00 +S 989 5077 1 561286.404798782.40 0.00 +S 989 5079 1 561327.304798811.10 0.00 +S 989 5081 1 561368.304798839.80 0.00 +S 989 5083 1 561409.204798868.50 0.00 +S 989 5085 1 561450.204798897.20 0.00 +S 989 5087 1 561491.104798925.80 0.00 +S 989 5089 1 561532.104798954.50 0.00 +S 989 5091 1 561573.104798983.20 0.00 +S 989 5093 1 561614.004799011.90 0.00 +S 989 5095 1 561655.004799040.60 0.00 +S 989 5097 1 561695.904799069.20 0.00 +S 989 5099 1 561736.904799097.90 0.00 +S 989 5101 1 561777.904799126.60 0.00 +S 989 5103 1 561818.804799155.30 0.00 +S 989 5105 1 561859.804799184.00 0.00 +S 989 5107 1 561900.704799212.60 0.00 +S 989 5109 1 561941.704799241.30 0.00 +S 989 5111 1 561982.604799270.00 0.00 +S 989 5113 1 562023.604799298.70 0.00 +S 989 5115 1 562064.604799327.30 0.00 +S 989 5117 1 562105.504799356.00 0.00 +S 989 5119 1 562146.504799384.70 0.00 +S 989 5121 1 562187.404799413.40 0.00 +S 989 5123 1 562228.404799442.10 0.00 +S 989 5125 1 562269.304799470.70 0.00 +S 989 5127 1 562310.304799499.40 0.00 +S 989 5129 1 562351.304799528.10 0.00 +S 989 5131 1 562392.204799556.80 0.00 +S 989 5133 1 562433.204799585.50 0.00 +S 989 5135 1 562474.104799614.10 0.00 +S 991 4961 1 558939.504797078.10 0.00 +S 991 4963 1 558980.504797106.80 0.00 +S 991 4965 1 559021.404797135.50 0.00 +S 991 4967 1 559062.404797164.20 0.00 +S 991 4969 1 559103.304797192.80 0.00 +S 991 4971 1 559144.304797221.50 0.00 +S 991 4973 1 559185.204797250.20 0.00 +S 991 4975 1 559226.204797278.90 0.00 +S 991 4977 1 559267.204797307.60 0.00 +S 991 4979 1 559308.104797336.20 0.00 +S 991 4981 1 559349.104797364.90 0.00 +S 991 4983 1 559390.004797393.60 0.00 +S 991 4985 1 559431.004797422.30 0.00 +S 991 4987 1 559471.904797450.90 0.00 +S 991 4989 1 559512.904797479.60 0.00 +S 991 4991 1 559553.904797508.30 0.00 +S 991 4993 1 559594.804797537.00 0.00 +S 991 4995 1 559635.804797565.70 0.00 +S 991 4997 1 559676.704797594.30 0.00 +S 991 4999 1 559717.704797623.00 0.00 +S 991 5001 1 559758.604797651.70 0.00 +S 991 5003 1 559799.604797680.40 0.00 +S 991 5005 1 559840.604797709.10 0.00 +S 991 5007 1 559881.504797737.70 0.00 +S 991 5009 1 559922.504797766.40 0.00 +S 991 5011 1 559963.404797795.10 0.00 +S 991 5013 1 560004.404797823.80 0.00 +S 991 5015 1 560045.404797852.40 0.00 +S 991 5017 1 560086.304797881.10 0.00 +S 991 5019 1 560127.304797909.80 0.00 +S 991 5021 1 560168.204797938.50 0.00 +S 991 5023 1 560209.204797967.20 0.00 +S 991 5025 1 560250.104797995.80 0.00 +S 991 5027 1 560291.104798024.50 0.00 +S 991 5029 1 560332.104798053.20 0.00 +S 991 5031 1 560373.004798081.90 0.00 +S 991 5033 1 560414.004798110.60 0.00 +S 991 5035 1 560454.904798139.20 0.00 +S 991 5037 1 560495.904798167.90 0.00 +S 991 5039 1 560536.804798196.60 0.00 +S 991 5041 1 560577.804798225.30 0.00 +S 991 5043 1 560618.804798254.00 0.00 +S 991 5045 1 560659.704798282.60 0.00 +S 991 5047 1 560700.704798311.30 0.00 +S 991 5049 1 560741.604798340.00 0.00 +S 991 5051 1 560782.604798368.70 0.00 +S 991 5053 1 560823.504798397.30 0.00 +S 991 5055 1 560864.504798426.00 0.00 +S 991 5057 1 560905.504798454.70 0.00 +S 991 5059 1 560946.404798483.40 0.00 +S 991 5061 1 560987.404798512.10 0.00 +S 991 5063 1 561028.304798540.70 0.00 +S 991 5065 1 561069.304798569.40 0.00 +S 991 5067 1 561110.304798598.10 0.00 +S 991 5069 1 561151.204798626.80 0.00 +S 991 5071 1 561192.204798655.50 0.00 +S 991 5073 1 561233.104798684.10 0.00 +S 991 5075 1 561274.104798712.80 0.00 +S 991 5077 1 561315.004798741.50 0.00 +S 991 5079 1 561356.004798770.20 0.00 +S 991 5081 1 561397.004798798.80 0.00 +S 991 5083 1 561437.904798827.50 0.00 +S 991 5085 1 561478.904798856.20 0.00 +S 991 5087 1 561519.804798884.90 0.00 +S 991 5089 1 561560.804798913.60 0.00 +S 991 5091 1 561601.704798942.20 0.00 +S 991 5093 1 561642.704798970.90 0.00 +S 991 5095 1 561683.704798999.60 0.00 +S 991 5097 1 561724.604799028.30 0.00 +S 991 5099 1 561765.604799057.00 0.00 +S 991 5101 1 561806.504799085.60 0.00 +S 991 5103 1 561847.504799114.30 0.00 +S 991 5105 1 561888.404799143.00 0.00 +S 991 5107 1 561929.404799171.70 0.00 +S 991 5109 1 561970.404799200.40 0.00 +S 991 5111 1 562011.304799229.00 0.00 +S 991 5113 1 562052.304799257.70 0.00 +S 991 5115 1 562093.204799286.40 0.00 +S 991 5117 1 562134.204799315.10 0.00 +S 991 5119 1 562175.104799343.70 0.00 +S 991 5121 1 562216.104799372.40 0.00 +S 991 5123 1 562257.104799401.10 0.00 +S 991 5125 1 562298.004799429.80 0.00 +S 991 5127 1 562339.004799458.50 0.00 +S 991 5129 1 562379.904799487.10 0.00 +S 991 5131 1 562420.904799515.80 0.00 +S 991 5133 1 562461.904799544.50 0.00 +S 991 5135 1 562502.804799573.20 0.00 +S 993 4961 1 558968.204797037.20 0.00 +S 993 4963 1 559009.104797065.80 0.00 +S 993 4965 1 559050.104797094.50 0.00 +S 993 4967 1 559091.004797123.20 0.00 +S 993 4969 1 559132.004797151.90 0.00 +S 993 4971 1 559173.004797180.60 0.00 +S 993 4973 1 559213.904797209.20 0.00 +S 993 4975 1 559254.904797237.90 0.00 +S 993 4977 1 559295.804797266.60 0.00 +S 993 4979 1 559336.804797295.30 0.00 +S 993 4981 1 559377.804797324.00 0.00 +S 993 4983 1 559418.704797352.60 0.00 +S 993 4985 1 559459.704797381.30 0.00 +S 993 4987 1 559500.604797410.00 0.00 +S 993 4989 1 559541.604797438.70 0.00 +S 993 4991 1 559582.504797467.30 0.00 +S 993 4993 1 559623.504797496.00 0.00 +S 993 4995 1 559664.504797524.70 0.00 +S 993 4997 1 559705.404797553.40 0.00 +S 993 4999 1 559746.404797582.10 0.00 +S 993 5001 1 559787.304797610.70 0.00 +S 993 5003 1 559828.304797639.40 0.00 +S 993 5005 1 559869.204797668.10 0.00 +S 993 5007 1 559910.204797696.80 0.00 +S 993 5009 1 559951.204797725.50 0.00 +S 993 5011 1 559992.104797754.10 0.00 +S 993 5013 1 560033.104797782.80 0.00 +S 993 5015 1 560074.004797811.50 0.00 +S 993 5017 1 560115.004797840.20 0.00 +S 993 5019 1 560155.904797868.80 0.00 +S 993 5021 1 560196.904797897.50 0.00 +S 993 5023 1 560237.904797926.20 0.00 +S 993 5025 1 560278.804797954.90 0.00 +S 993 5027 1 560319.804797983.60 0.00 +S 993 5029 1 560360.704798012.20 0.00 +S 993 5031 1 560401.704798040.90 0.00 +S 993 5033 1 560442.704798069.60 0.00 +S 993 5035 1 560483.604798098.30 0.00 +S 993 5037 1 560524.604798127.00 0.00 +S 993 5039 1 560565.504798155.60 0.00 +S 993 5041 1 560606.504798184.30 0.00 +S 993 5043 1 560647.404798213.00 0.00 +S 993 5045 1 560688.404798241.70 0.00 +S 993 5047 1 560729.404798270.40 0.00 +S 993 5049 1 560770.304798299.00 0.00 +S 993 5051 1 560811.304798327.70 0.00 +S 993 5053 1 560852.204798356.40 0.00 +S 993 5055 1 560893.204798385.10 0.00 +S 993 5057 1 560934.104798413.70 0.00 +S 993 5059 1 560975.104798442.40 0.00 +S 993 5061 1 561016.104798471.10 0.00 +S 993 5063 1 561057.004798499.80 0.00 +S 993 5065 1 561098.004798528.50 0.00 +S 993 5067 1 561138.904798557.10 0.00 +S 993 5069 1 561179.904798585.80 0.00 +S 993 5071 1 561220.804798614.50 0.00 +S 993 5073 1 561261.804798643.20 0.00 +S 993 5075 1 561302.804798671.90 0.00 +S 993 5077 1 561343.704798700.50 0.00 +S 993 5079 1 561384.704798729.20 0.00 +S 993 5081 1 561425.604798757.90 0.00 +S 993 5083 1 561466.604798786.60 0.00 +S 993 5085 1 561507.504798815.20 0.00 +S 993 5087 1 561548.504798843.90 0.00 +S 993 5089 1 561589.504798872.60 0.00 +S 993 5091 1 561630.404798901.30 0.00 +S 993 5093 1 561671.404798930.00 0.00 +S 993 5095 1 561712.304798958.60 0.00 +S 993 5097 1 561753.304798987.30 0.00 +S 993 5099 1 561794.304799016.00 0.00 +S 993 5101 1 561835.204799044.70 0.00 +S 993 5103 1 561876.204799073.40 0.00 +S 993 5105 1 561917.104799102.00 0.00 +S 993 5107 1 561958.104799130.70 0.00 +S 993 5109 1 561999.004799159.40 0.00 +S 993 5111 1 562040.004799188.10 0.00 +S 993 5113 1 562081.004799216.80 0.00 +S 993 5115 1 562121.904799245.40 0.00 +S 993 5117 1 562162.904799274.10 0.00 +S 993 5119 1 562203.804799302.80 0.00 +S 993 5121 1 562244.804799331.50 0.00 +S 993 5123 1 562285.704799360.10 0.00 +S 993 5125 1 562326.704799388.80 0.00 +S 993 5127 1 562367.704799417.50 0.00 +S 993 5129 1 562408.604799446.20 0.00 +S 993 5131 1 562449.604799474.90 0.00 +S 993 5133 1 562490.504799503.50 0.00 +S 993 5135 1 562531.504799532.20 0.00 +S 995 4961 1 558996.904796996.20 0.00 +S 995 4963 1 559037.804797024.90 0.00 +S 995 4965 1 559078.804797053.60 0.00 +S 995 4967 1 559119.704797082.20 0.00 +S 995 4969 1 559160.704797110.90 0.00 +S 995 4971 1 559201.604797139.60 0.00 +S 995 4973 1 559242.604797168.30 0.00 +S 995 4975 1 559283.604797197.00 0.00 +S 995 4977 1 559324.504797225.60 0.00 +S 995 4979 1 559365.504797254.30 0.00 +S 995 4981 1 559406.404797283.00 0.00 +S 995 4983 1 559447.404797311.70 0.00 +S 995 4985 1 559488.304797340.40 0.00 +S 995 4987 1 559529.304797369.00 0.00 +S 995 4989 1 559570.304797397.70 0.00 +S 995 4991 1 559611.204797426.40 0.00 +S 995 4993 1 559652.204797455.10 0.00 +S 995 4995 1 559693.104797483.70 0.00 +S 995 4997 1 559734.104797512.40 0.00 +S 995 4999 1 559775.004797541.10 0.00 +S 995 5001 1 559816.004797569.80 0.00 +S 995 5003 1 559857.004797598.50 0.00 +S 995 5005 1 559897.904797627.10 0.00 +S 995 5007 1 559938.904797655.80 0.00 +S 995 5009 1 559979.804797684.50 0.00 +S 995 5011 1 560020.804797713.20 0.00 +S 995 5013 1 560061.804797741.90 0.00 +S 995 5015 1 560102.704797770.50 0.00 +S 995 5017 1 560143.704797799.20 0.00 +S 995 5019 1 560184.604797827.90 0.00 +S 995 5021 1 560225.604797856.60 0.00 +S 995 5023 1 560266.504797885.20 0.00 +S 995 5025 1 560307.504797913.90 0.00 +S 995 5027 1 560348.504797942.60 0.00 +S 995 5029 1 560389.404797971.30 0.00 +S 995 5031 1 560430.404798000.00 0.00 +S 995 5033 1 560471.304798028.60 0.00 +S 995 5035 1 560512.304798057.30 0.00 +S 995 5037 1 560553.204798086.00 0.00 +S 995 5039 1 560594.204798114.70 0.00 +S 995 5041 1 560635.204798143.40 0.00 +S 995 5043 1 560676.104798172.00 0.00 +S 995 5045 1 560717.104798200.70 0.00 +S 995 5047 1 560758.004798229.40 0.00 +S 995 5049 1 560799.004798258.10 0.00 +S 995 5051 1 560839.904798286.80 0.00 +S 995 5053 1 560880.904798315.40 0.00 +S 995 5055 1 560921.904798344.10 0.00 +S 995 5057 1 560962.804798372.80 0.00 +S 995 5059 1 561003.804798401.50 0.00 +S 995 5061 1 561044.704798430.10 0.00 +S 995 5063 1 561085.704798458.80 0.00 +S 995 5065 1 561126.704798487.50 0.00 +S 995 5067 1 561167.604798516.20 0.00 +S 995 5069 1 561208.604798544.90 0.00 +S 995 5071 1 561249.504798573.50 0.00 +S 995 5073 1 561290.504798602.20 0.00 +S 995 5075 1 561331.404798630.90 0.00 +S 995 5077 1 561372.404798659.60 0.00 +S 995 5079 1 561413.404798688.30 0.00 +S 995 5081 1 561454.304798716.90 0.00 +S 995 5083 1 561495.304798745.60 0.00 +S 995 5085 1 561536.204798774.30 0.00 +S 995 5087 1 561577.204798803.00 0.00 +S 995 5089 1 561618.104798831.60 0.00 +S 995 5091 1 561659.104798860.30 0.00 +S 995 5093 1 561700.104798889.00 0.00 +S 995 5095 1 561741.004798917.70 0.00 +S 995 5097 1 561782.004798946.40 0.00 +S 995 5099 1 561822.904798975.00 0.00 +S 995 5101 1 561863.904799003.70 0.00 +S 995 5103 1 561904.804799032.40 0.00 +S 995 5105 1 561945.804799061.10 0.00 +S 995 5107 1 561986.804799089.80 0.00 +S 995 5109 1 562027.704799118.40 0.00 +S 995 5111 1 562068.704799147.10 0.00 +S 995 5113 1 562109.604799175.80 0.00 +S 995 5115 1 562150.604799204.50 0.00 +S 995 5117 1 562191.504799233.20 0.00 +S 995 5119 1 562232.504799261.80 0.00 +S 995 5121 1 562273.504799290.50 0.00 +S 995 5123 1 562314.404799319.20 0.00 +S 995 5125 1 562355.404799347.90 0.00 +S 995 5127 1 562396.304799376.50 0.00 +S 995 5129 1 562437.304799405.20 0.00 +S 995 5131 1 562478.304799433.90 0.00 +S 995 5133 1 562519.204799462.60 0.00 +S 995 5135 1 562560.204799491.30 0.00 +S 997 4961 1 559025.504796955.20 0.00 +S 997 4963 1 559066.504796983.90 0.00 +S 997 4965 1 559107.404797012.60 0.00 +S 997 4967 1 559148.404797041.30 0.00 +S 997 4969 1 559189.404797070.00 0.00 +S 997 4971 1 559230.304797098.60 0.00 +S 997 4973 1 559271.304797127.30 0.00 +S 997 4975 1 559312.204797156.00 0.00 +S 997 4977 1 559353.204797184.70 0.00 +S 997 4979 1 559394.204797213.40 0.00 +S 997 4981 1 559435.104797242.00 0.00 +S 997 4983 1 559476.104797270.70 0.00 +S 997 4985 1 559517.004797299.40 0.00 +S 997 4987 1 559558.004797328.10 0.00 +S 997 4989 1 559598.904797356.80 0.00 +S 997 4991 1 559639.904797385.40 0.00 +S 997 4993 1 559680.904797414.10 0.00 +S 997 4995 1 559721.804797442.80 0.00 +S 997 4997 1 559762.804797471.50 0.00 +S 997 4999 1 559803.704797500.10 0.00 +S 997 5001 1 559844.704797528.80 0.00 +S 997 5003 1 559885.604797557.50 0.00 +S 997 5005 1 559926.604797586.20 0.00 +S 997 5007 1 559967.604797614.90 0.00 +S 997 5009 1 560008.504797643.50 0.00 +S 997 5011 1 560049.504797672.20 0.00 +S 997 5013 1 560090.404797700.90 0.00 +S 997 5015 1 560131.404797729.60 0.00 +S 997 5017 1 560172.304797758.30 0.00 +S 997 5019 1 560213.304797786.90 0.00 +S 997 5021 1 560254.304797815.60 0.00 +S 997 5023 1 560295.204797844.30 0.00 +S 997 5025 1 560336.204797873.00 0.00 +S 997 5027 1 560377.104797901.60 0.00 +S 997 5029 1 560418.104797930.30 0.00 +S 997 5031 1 560459.104797959.00 0.00 +S 997 5033 1 560500.004797987.70 0.00 +S 997 5035 1 560541.004798016.40 0.00 +S 997 5037 1 560581.904798045.00 0.00 +S 997 5039 1 560622.904798073.70 0.00 +S 997 5041 1 560663.804798102.40 0.00 +S 997 5043 1 560704.804798131.10 0.00 +S 997 5045 1 560745.804798159.80 0.00 +S 997 5047 1 560786.704798188.40 0.00 +S 997 5049 1 560827.704798217.10 0.00 +S 997 5051 1 560868.604798245.80 0.00 +S 997 5053 1 560909.604798274.50 0.00 +S 997 5055 1 560950.504798303.20 0.00 +S 997 5057 1 560991.504798331.80 0.00 +S 997 5059 1 561032.504798360.50 0.00 +S 997 5061 1 561073.404798389.20 0.00 +S 997 5063 1 561114.404798417.90 0.00 +S 997 5065 1 561155.304798446.50 0.00 +S 997 5067 1 561196.304798475.20 0.00 +S 997 5069 1 561237.204798503.90 0.00 +S 997 5071 1 561278.204798532.60 0.00 +S 997 5073 1 561319.204798561.30 0.00 +S 997 5075 1 561360.104798589.90 0.00 +S 997 5077 1 561401.104798618.60 0.00 +S 997 5079 1 561442.004798647.30 0.00 +S 997 5081 1 561483.004798676.00 0.00 +S 997 5083 1 561523.904798704.70 0.00 +S 997 5085 1 561564.904798733.30 0.00 +S 997 5087 1 561605.904798762.00 0.00 +S 997 5089 1 561646.804798790.70 0.00 +S 997 5091 1 561687.804798819.40 0.00 +S 997 5093 1 561728.704798848.00 0.00 +S 997 5095 1 561769.704798876.70 0.00 +S 997 5097 1 561810.704798905.40 0.00 +S 997 5099 1 561851.604798934.10 0.00 +S 997 5101 1 561892.604798962.80 0.00 +S 997 5103 1 561933.504798991.40 0.00 +S 997 5105 1 561974.504799020.10 0.00 +S 997 5107 1 562015.404799048.80 0.00 +S 997 5109 1 562056.404799077.50 0.00 +S 997 5111 1 562097.404799106.20 0.00 +S 997 5113 1 562138.304799134.80 0.00 +S 997 5115 1 562179.304799163.50 0.00 +S 997 5117 1 562220.204799192.20 0.00 +S 997 5119 1 562261.204799220.90 0.00 +S 997 5121 1 562302.104799249.60 0.00 +S 997 5123 1 562343.104799278.20 0.00 +S 997 5125 1 562384.104799306.90 0.00 +S 997 5127 1 562425.004799335.60 0.00 +S 997 5129 1 562466.004799364.30 0.00 +S 997 5131 1 562506.904799392.90 0.00 +S 997 5133 1 562547.904799421.60 0.00 +S 997 5135 1 562588.804799450.30 0.00 +S 999 4961 1 559054.204796914.30 0.00 +S 999 4963 1 559095.204796943.00 0.00 +S 999 4965 1 559136.104796971.60 0.00 +S 999 4967 1 559177.104797000.30 0.00 +S 999 4969 1 559218.004797029.00 0.00 +S 999 4971 1 559259.004797057.70 0.00 +S 999 4973 1 559300.004797086.40 0.00 +S 999 4975 1 559340.904797115.00 0.00 +S 999 4977 1 559381.904797143.70 0.00 +S 999 4979 1 559422.804797172.40 0.00 +S 999 4981 1 559463.804797201.10 0.00 +S 999 4983 1 559504.704797229.80 0.00 +S 999 4985 1 559545.704797258.40 0.00 +S 999 4987 1 559586.704797287.10 0.00 +S 999 4989 1 559627.604797315.80 0.00 +S 999 4991 1 559668.604797344.50 0.00 +S 999 4993 1 559709.504797373.20 0.00 +S 999 4995 1 559750.504797401.80 0.00 +S 999 4997 1 559791.404797430.50 0.00 +S 999 4999 1 559832.404797459.20 0.00 +S 999 5001 1 559873.404797487.90 0.00 +S 999 5003 1 559914.304797516.50 0.00 +S 999 5005 1 559955.304797545.20 0.00 +S 999 5007 1 559996.204797573.90 0.00 +S 999 5009 1 560037.204797602.60 0.00 +S 999 5011 1 560078.204797631.30 0.00 +S 999 5013 1 560119.104797659.90 0.00 +S 999 5015 1 560160.104797688.60 0.00 +S 999 5017 1 560201.004797717.30 0.00 +S 999 5019 1 560242.004797746.00 0.00 +S 999 5021 1 560282.904797774.70 0.00 +S 999 5023 1 560323.904797803.30 0.00 +S 999 5025 1 560364.904797832.00 0.00 +S 999 5027 1 560405.804797860.70 0.00 +S 999 5029 1 560446.804797889.40 0.00 +S 999 5031 1 560487.704797918.00 0.00 +S 999 5033 1 560528.704797946.70 0.00 +S 999 5035 1 560569.604797975.40 0.00 +S 999 5037 1 560610.604798004.10 0.00 +S 999 5039 1 560651.604798032.80 0.00 +S 999 5041 1 560692.504798061.40 0.00 +S 999 5043 1 560733.504798090.10 0.00 +S 999 5045 1 560774.404798118.80 0.00 +S 999 5047 1 560815.404798147.50 0.00 +S 999 5049 1 560856.304798176.20 0.00 +S 999 5051 1 560897.304798204.80 0.00 +S 999 5053 1 560938.304798233.50 0.00 +S 999 5055 1 560979.204798262.20 0.00 +S 999 5057 1 561020.204798290.90 0.00 +S 999 5059 1 561061.104798319.60 0.00 +S 999 5061 1 561102.104798348.20 0.00 +S 999 5063 1 561143.104798376.90 0.00 +S 999 5065 1 561184.004798405.60 0.00 +S 999 5067 1 561225.004798434.30 0.00 +S 999 5069 1 561265.904798462.90 0.00 +S 999 5071 1 561306.904798491.60 0.00 +S 999 5073 1 561347.804798520.30 0.00 +S 999 5075 1 561388.804798549.00 0.00 +S 999 5077 1 561429.804798577.70 0.00 +S 999 5079 1 561470.704798606.30 0.00 +S 999 5081 1 561511.704798635.00 0.00 +S 999 5083 1 561552.604798663.70 0.00 +S 999 5085 1 561593.604798692.40 0.00 +S 999 5087 1 561634.504798721.10 0.00 +S 999 5089 1 561675.504798749.70 0.00 +S 999 5091 1 561716.504798778.40 0.00 +S 999 5093 1 561757.404798807.10 0.00 +S 999 5095 1 561798.404798835.80 0.00 +S 999 5097 1 561839.304798864.40 0.00 +S 999 5099 1 561880.304798893.10 0.00 +S 999 5101 1 561921.204798921.80 0.00 +S 999 5103 1 561962.204798950.50 0.00 +S 999 5105 1 562003.204798979.20 0.00 +S 999 5107 1 562044.104799007.80 0.00 +S 999 5109 1 562085.104799036.50 0.00 +S 999 5111 1 562126.004799065.20 0.00 +S 999 5113 1 562167.004799093.90 0.00 +S 999 5115 1 562207.904799122.60 0.00 +S 999 5117 1 562248.904799151.20 0.00 +S 999 5119 1 562289.904799179.90 0.00 +S 999 5121 1 562330.804799208.60 0.00 +S 999 5123 1 562371.804799237.30 0.00 +S 999 5125 1 562412.704799266.00 0.00 +S 999 5127 1 562453.704799294.60 0.00 +S 999 5129 1 562494.704799323.30 0.00 +S 999 5131 1 562535.604799352.00 0.00 +S 999 5133 1 562576.604799380.70 0.00 +S 999 5135 1 562617.504799409.30 0.00 +S 1001 4961 1 559082.904796873.30 0.00 +S 1001 4963 1 559123.804796902.00 0.00 +S 1001 4965 1 559164.804796930.70 0.00 +S 1001 4967 1 559205.804796959.40 0.00 +S 1001 4969 1 559246.704796988.00 0.00 +S 1001 4971 1 559287.704797016.70 0.00 +S 1001 4973 1 559328.604797045.40 0.00 +S 1001 4975 1 559369.604797074.10 0.00 +S 1001 4977 1 559410.604797102.80 0.00 +S 1001 4979 1 559451.504797131.40 0.00 +S 1001 4981 1 559492.504797160.10 0.00 +S 1001 4983 1 559533.404797188.80 0.00 +S 1001 4985 1 559574.404797217.50 0.00 +S 1001 4987 1 559615.304797246.20 0.00 +S 1001 4989 1 559656.304797274.80 0.00 +S 1001 4991 1 559697.304797303.50 0.00 +S 1001 4993 1 559738.204797332.20 0.00 +S 1001 4995 1 559779.204797360.90 0.00 +S 1001 4997 1 559820.104797389.60 0.00 +S 1001 4999 1 559861.104797418.20 0.00 +S 1001 5001 1 559902.004797446.90 0.00 +S 1001 5003 1 559943.004797475.60 0.00 +S 1001 5005 1 559984.004797504.30 0.00 +S 1001 5007 1 560024.904797532.90 0.00 +S 1001 5009 1 560065.904797561.60 0.00 +S 1001 5011 1 560106.804797590.30 0.00 +S 1001 5013 1 560147.804797619.00 0.00 +S 1001 5015 1 560188.704797647.70 0.00 +S 1001 5017 1 560229.704797676.30 0.00 +S 1001 5019 1 560270.704797705.00 0.00 +S 1001 5021 1 560311.604797733.70 0.00 +S 1001 5023 1 560352.604797762.40 0.00 +S 1001 5025 1 560393.504797791.10 0.00 +S 1001 5027 1 560434.504797819.70 0.00 +S 1001 5029 1 560475.504797848.40 0.00 +S 1001 5031 1 560516.404797877.10 0.00 +S 1001 5033 1 560557.404797905.80 0.00 +S 1001 5035 1 560598.304797934.40 0.00 +S 1001 5037 1 560639.304797963.10 0.00 +S 1001 5039 1 560680.204797991.80 0.00 +S 1001 5041 1 560721.204798020.50 0.00 +S 1001 5043 1 560762.204798049.20 0.00 +S 1001 5045 1 560803.104798077.80 0.00 +S 1001 5047 1 560844.104798106.50 0.00 +S 1001 5049 1 560885.004798135.20 0.00 +S 1001 5051 1 560926.004798163.90 0.00 +S 1001 5053 1 560966.904798192.60 0.00 +S 1001 5055 1 561007.904798221.20 0.00 +S 1001 5057 1 561048.904798249.90 0.00 +S 1001 5059 1 561089.804798278.60 0.00 +S 1001 5061 1 561130.804798307.30 0.00 +S 1001 5063 1 561171.704798336.00 0.00 +S 1001 5065 1 561212.704798364.60 0.00 +S 1001 5067 1 561253.604798393.30 0.00 +S 1001 5069 1 561294.604798422.00 0.00 +S 1001 5071 1 561335.604798450.70 0.00 +S 1001 5073 1 561376.504798479.30 0.00 +S 1001 5075 1 561417.504798508.00 0.00 +S 1001 5077 1 561458.404798536.70 0.00 +S 1001 5079 1 561499.404798565.40 0.00 +S 1001 5081 1 561540.304798594.10 0.00 +S 1001 5083 1 561581.304798622.70 0.00 +S 1001 5085 1 561622.304798651.40 0.00 +S 1001 5087 1 561663.204798680.10 0.00 +S 1001 5089 1 561704.204798708.80 0.00 +S 1001 5091 1 561745.104798737.50 0.00 +S 1001 5093 1 561786.104798766.10 0.00 +S 1001 5095 1 561827.104798794.80 0.00 +S 1001 5097 1 561868.004798823.50 0.00 +S 1001 5099 1 561909.004798852.20 0.00 +S 1001 5101 1 561949.904798880.80 0.00 +S 1001 5103 1 561990.904798909.50 0.00 +S 1001 5105 1 562031.804798938.20 0.00 +S 1001 5107 1 562072.804798966.90 0.00 +S 1001 5109 1 562113.804798995.60 0.00 +S 1001 5111 1 562154.704799024.20 0.00 +S 1001 5113 1 562195.704799052.90 0.00 +S 1001 5115 1 562236.604799081.60 0.00 +S 1001 5117 1 562277.604799110.30 0.00 +S 1001 5119 1 562318.504799139.00 0.00 +S 1001 5121 1 562359.504799167.60 0.00 +S 1001 5123 1 562400.504799196.30 0.00 +S 1001 5125 1 562441.404799225.00 0.00 +S 1001 5127 1 562482.404799253.70 0.00 +S 1001 5129 1 562523.304799282.40 0.00 +S 1001 5131 1 562564.304799311.00 0.00 +S 1001 5133 1 562605.204799339.70 0.00 +S 1001 5135 1 562646.204799368.40 0.00 +S 1003 4961 1 559111.604796832.40 0.00 +S 1003 4963 1 559152.504796861.10 0.00 +S 1003 4965 1 559193.504796889.70 0.00 +S 1003 4967 1 559234.404796918.40 0.00 +S 1003 4969 1 559275.404796947.10 0.00 +S 1003 4971 1 559316.404796975.80 0.00 +S 1003 4973 1 559357.304797004.40 0.00 +S 1003 4975 1 559398.304797033.10 0.00 +S 1003 4977 1 559439.204797061.80 0.00 +S 1003 4979 1 559480.204797090.50 0.00 +S 1003 4981 1 559521.104797119.20 0.00 +S 1003 4983 1 559562.104797147.80 0.00 +S 1003 4985 1 559603.104797176.50 0.00 +S 1003 4987 1 559644.004797205.20 0.00 +S 1003 4989 1 559685.004797233.90 0.00 +S 1003 4991 1 559725.904797262.60 0.00 +S 1003 4993 1 559766.904797291.20 0.00 +S 1003 4995 1 559807.904797319.90 0.00 +S 1003 4997 1 559848.804797348.60 0.00 +S 1003 4999 1 559889.804797377.30 0.00 +S 1003 5001 1 559930.704797406.00 0.00 +S 1003 5003 1 559971.704797434.60 0.00 +S 1003 5005 1 560012.604797463.30 0.00 +S 1003 5007 1 560053.604797492.00 0.00 +S 1003 5009 1 560094.604797520.70 0.00 +S 1003 5011 1 560135.504797549.30 0.00 +S 1003 5013 1 560176.504797578.00 0.00 +S 1003 5015 1 560217.404797606.70 0.00 +S 1003 5017 1 560258.404797635.40 0.00 +S 1003 5019 1 560299.304797664.10 0.00 +S 1003 5021 1 560340.304797692.70 0.00 +S 1003 5023 1 560381.304797721.40 0.00 +S 1003 5025 1 560422.204797750.10 0.00 +S 1003 5027 1 560463.204797778.80 0.00 +S 1003 5029 1 560504.104797807.50 0.00 +S 1003 5031 1 560545.104797836.10 0.00 +S 1003 5033 1 560586.004797864.80 0.00 +S 1003 5035 1 560627.004797893.50 0.00 +S 1003 5037 1 560668.004797922.20 0.00 +S 1003 5039 1 560708.904797950.80 0.00 +S 1003 5041 1 560749.904797979.50 0.00 +S 1003 5043 1 560790.804798008.20 0.00 +S 1003 5045 1 560831.804798036.90 0.00 +S 1003 5047 1 560872.704798065.60 0.00 +S 1003 5049 1 560913.704798094.20 0.00 +S 1003 5051 1 560954.704798122.90 0.00 +S 1003 5053 1 560995.604798151.60 0.00 +S 1003 5055 1 561036.604798180.30 0.00 +S 1003 5057 1 561077.504798209.00 0.00 +S 1003 5059 1 561118.504798237.60 0.00 +S 1003 5061 1 561159.504798266.30 0.00 +S 1003 5063 1 561200.404798295.00 0.00 +S 1003 5065 1 561241.404798323.70 0.00 +S 1003 5067 1 561282.304798352.40 0.00 +S 1003 5069 1 561323.304798381.00 0.00 +S 1003 5071 1 561364.204798409.70 0.00 +S 1003 5073 1 561405.204798438.40 0.00 +S 1003 5075 1 561446.204798467.10 0.00 +S 1003 5077 1 561487.104798495.70 0.00 +S 1003 5079 1 561528.104798524.40 0.00 +S 1003 5081 1 561569.004798553.10 0.00 +S 1003 5083 1 561610.004798581.80 0.00 +S 1003 5085 1 561650.904798610.50 0.00 +S 1003 5087 1 561691.904798639.10 0.00 +S 1003 5089 1 561732.904798667.80 0.00 +S 1003 5091 1 561773.804798696.50 0.00 +S 1003 5093 1 561814.804798725.20 0.00 +S 1003 5095 1 561855.704798753.90 0.00 +S 1003 5097 1 561896.704798782.50 0.00 +S 1003 5099 1 561937.604798811.20 0.00 +S 1003 5101 1 561978.604798839.90 0.00 +S 1003 5103 1 562019.604798868.60 0.00 +S 1003 5105 1 562060.504798897.20 0.00 +S 1003 5107 1 562101.504798925.90 0.00 +S 1003 5109 1 562142.404798954.60 0.00 +S 1003 5111 1 562183.404798983.30 0.00 +S 1003 5113 1 562224.304799012.00 0.00 +S 1003 5115 1 562265.304799040.60 0.00 +S 1003 5117 1 562306.304799069.30 0.00 +S 1003 5119 1 562347.204799098.00 0.00 +S 1003 5121 1 562388.204799126.70 0.00 +S 1003 5123 1 562429.104799155.40 0.00 +S 1003 5125 1 562470.104799184.00 0.00 +S 1003 5127 1 562511.104799212.70 0.00 +S 1003 5129 1 562552.004799241.40 0.00 +S 1003 5131 1 562593.004799270.10 0.00 +S 1003 5133 1 562633.904799298.80 0.00 +S 1003 5135 1 562674.904799327.40 0.00 +S 1005 4961 1 559140.204796791.40 0.00 +S 1005 4963 1 559181.204796820.10 0.00 +S 1005 4965 1 559222.204796848.80 0.00 +S 1005 4967 1 559263.104796877.50 0.00 +S 1005 4969 1 559304.104796906.10 0.00 +S 1005 4971 1 559345.004796934.80 0.00 +S 1005 4973 1 559386.004796963.50 0.00 +S 1005 4975 1 559427.004796992.20 0.00 +S 1005 4977 1 559467.904797020.80 0.00 +S 1005 4979 1 559508.904797049.50 0.00 +S 1005 4981 1 559549.804797078.20 0.00 +S 1005 4983 1 559590.804797106.90 0.00 +S 1005 4985 1 559631.704797135.60 0.00 +S 1005 4987 1 559672.704797164.20 0.00 +S 1005 4989 1 559713.704797192.90 0.00 +S 1005 4991 1 559754.604797221.60 0.00 +S 1005 4993 1 559795.604797250.30 0.00 +S 1005 4995 1 559836.504797279.00 0.00 +S 1005 4997 1 559877.504797307.60 0.00 +S 1005 4999 1 559918.404797336.30 0.00 +S 1005 5001 1 559959.404797365.00 0.00 +S 1005 5003 1 560000.404797393.70 0.00 +S 1005 5005 1 560041.304797422.40 0.00 +S 1005 5007 1 560082.304797451.00 0.00 +S 1005 5009 1 560123.204797479.70 0.00 +S 1005 5011 1 560164.204797508.40 0.00 +S 1005 5013 1 560205.104797537.10 0.00 +S 1005 5015 1 560246.104797565.70 0.00 +S 1005 5017 1 560287.104797594.40 0.00 +S 1005 5019 1 560328.004797623.10 0.00 +S 1005 5021 1 560369.004797651.80 0.00 +S 1005 5023 1 560409.904797680.50 0.00 +S 1005 5025 1 560450.904797709.10 0.00 +S 1005 5027 1 560491.904797737.80 0.00 +S 1005 5029 1 560532.804797766.50 0.00 +S 1005 5031 1 560573.804797795.20 0.00 +S 1005 5033 1 560614.704797823.90 0.00 +S 1005 5035 1 560655.704797852.50 0.00 +S 1005 5037 1 560696.604797881.20 0.00 +S 1005 5039 1 560737.604797909.90 0.00 +S 1005 5041 1 560778.604797938.60 0.00 +S 1005 5043 1 560819.504797967.20 0.00 +S 1005 5045 1 560860.504797995.90 0.00 +S 1005 5047 1 560901.404798024.60 0.00 +S 1005 5049 1 560942.404798053.30 0.00 +S 1005 5051 1 560983.304798082.00 0.00 +S 1005 5053 1 561024.304798110.60 0.00 +S 1005 5055 1 561065.304798139.30 0.00 +S 1005 5057 1 561106.204798168.00 0.00 +S 1005 5059 1 561147.204798196.70 0.00 +S 1005 5061 1 561188.104798225.40 0.00 +S 1005 5063 1 561229.104798254.00 0.00 +S 1005 5065 1 561270.004798282.70 0.00 +S 1005 5067 1 561311.004798311.40 0.00 +S 1005 5069 1 561352.004798340.10 0.00 +S 1005 5071 1 561392.904798368.80 0.00 +S 1005 5073 1 561433.904798397.40 0.00 +S 1005 5075 1 561474.804798426.10 0.00 +S 1005 5077 1 561515.804798454.80 0.00 +S 1005 5079 1 561556.704798483.50 0.00 +S 1005 5081 1 561597.704798512.10 0.00 +S 1005 5083 1 561638.704798540.80 0.00 +S 1005 5085 1 561679.604798569.50 0.00 +S 1005 5087 1 561720.604798598.20 0.00 +S 1005 5089 1 561761.504798626.90 0.00 +S 1005 5091 1 561802.504798655.50 0.00 +S 1005 5093 1 561843.504798684.20 0.00 +S 1005 5095 1 561884.404798712.90 0.00 +S 1005 5097 1 561925.404798741.60 0.00 +S 1005 5099 1 561966.304798770.30 0.00 +S 1005 5101 1 562007.304798798.90 0.00 +S 1005 5103 1 562048.204798827.60 0.00 +S 1005 5105 1 562089.204798856.30 0.00 +S 1005 5107 1 562130.204798885.00 0.00 +S 1005 5109 1 562171.104798913.60 0.00 +S 1005 5111 1 562212.104798942.30 0.00 +S 1005 5113 1 562253.004798971.00 0.00 +S 1005 5115 1 562294.004798999.70 0.00 +S 1005 5117 1 562334.904799028.40 0.00 +S 1005 5119 1 562375.904799057.00 0.00 +S 1005 5121 1 562416.904799085.70 0.00 +S 1005 5123 1 562457.804799114.40 0.00 +S 1005 5125 1 562498.804799143.10 0.00 +S 1005 5127 1 562539.704799171.80 0.00 +S 1005 5129 1 562580.704799200.40 0.00 +S 1005 5131 1 562621.604799229.10 0.00 +S 1005 5133 1 562662.604799257.80 0.00 +S 1005 5135 1 562703.604799286.50 0.00 +S 1007 4961 1 559168.904796750.50 0.00 +S 1007 4963 1 559209.904796779.10 0.00 +S 1007 4965 1 559250.804796807.80 0.00 +S 1007 4967 1 559291.804796836.50 0.00 +S 1007 4969 1 559332.804796865.20 0.00 +S 1007 4971 1 559373.704796893.90 0.00 +S 1007 4973 1 559414.704796922.50 0.00 +S 1007 4975 1 559455.604796951.20 0.00 +S 1007 4977 1 559496.604796979.90 0.00 +S 1007 4979 1 559537.504797008.60 0.00 +S 1007 4981 1 559578.504797037.20 0.00 +S 1007 4983 1 559619.504797065.90 0.00 +S 1007 4985 1 559660.404797094.60 0.00 +S 1007 4987 1 559701.404797123.30 0.00 +S 1007 4989 1 559742.304797152.00 0.00 +S 1007 4991 1 559783.304797180.60 0.00 +S 1007 4993 1 559824.304797209.30 0.00 +S 1007 4995 1 559865.204797238.00 0.00 +S 1007 4997 1 559906.204797266.70 0.00 +S 1007 4999 1 559947.104797295.40 0.00 +S 1007 5001 1 559988.104797324.00 0.00 +S 1007 5003 1 560029.004797352.70 0.00 +S 1007 5005 1 560070.004797381.40 0.00 +S 1007 5007 1 560111.004797410.10 0.00 +S 1007 5009 1 560151.904797438.80 0.00 +S 1007 5011 1 560192.904797467.40 0.00 +S 1007 5013 1 560233.804797496.10 0.00 +S 1007 5015 1 560274.804797524.80 0.00 +S 1007 5017 1 560315.704797553.50 0.00 +S 1007 5019 1 560356.704797582.10 0.00 +S 1007 5021 1 560397.704797610.80 0.00 +S 1007 5023 1 560438.604797639.50 0.00 +S 1007 5025 1 560479.604797668.20 0.00 +S 1007 5027 1 560520.504797696.90 0.00 +S 1007 5029 1 560561.504797725.50 0.00 +S 1007 5031 1 560602.404797754.20 0.00 +S 1007 5033 1 560643.404797782.90 0.00 +S 1007 5035 1 560684.404797811.60 0.00 +S 1007 5037 1 560725.304797840.30 0.00 +S 1007 5039 1 560766.304797868.90 0.00 +S 1007 5041 1 560807.204797897.60 0.00 +S 1007 5043 1 560848.204797926.30 0.00 +S 1007 5045 1 560889.104797955.00 0.00 +S 1007 5047 1 560930.104797983.60 0.00 +S 1007 5049 1 560971.104798012.30 0.00 +S 1007 5051 1 561012.004798041.00 0.00 +S 1007 5053 1 561053.004798069.70 0.00 +S 1007 5055 1 561093.904798098.40 0.00 +S 1007 5057 1 561134.904798127.00 0.00 +S 1007 5059 1 561175.904798155.70 0.00 +S 1007 5061 1 561216.804798184.40 0.00 +S 1007 5063 1 561257.804798213.10 0.00 +S 1007 5065 1 561298.704798241.80 0.00 +S 1007 5067 1 561339.704798270.40 0.00 +S 1007 5069 1 561380.604798299.10 0.00 +S 1007 5071 1 561421.604798327.80 0.00 +S 1007 5073 1 561462.604798356.50 0.00 +S 1007 5075 1 561503.504798385.20 0.00 +S 1007 5077 1 561544.504798413.80 0.00 +S 1007 5079 1 561585.404798442.50 0.00 +S 1007 5081 1 561626.404798471.20 0.00 +S 1007 5083 1 561667.304798499.90 0.00 +S 1007 5085 1 561708.304798528.50 0.00 +S 1007 5087 1 561749.304798557.20 0.00 +S 1007 5089 1 561790.204798585.90 0.00 +S 1007 5091 1 561831.204798614.60 0.00 +S 1007 5093 1 561872.104798643.30 0.00 +S 1007 5095 1 561913.104798671.90 0.00 +S 1007 5097 1 561954.004798700.60 0.00 +S 1007 5099 1 561995.004798729.30 0.00 +S 1007 5101 1 562036.004798758.00 0.00 +S 1007 5103 1 562076.904798786.70 0.00 +S 1007 5105 1 562117.904798815.30 0.00 +S 1007 5107 1 562158.804798844.00 0.00 +S 1007 5109 1 562199.804798872.70 0.00 +S 1007 5111 1 562240.704798901.40 0.00 +S 1007 5113 1 562281.704798930.00 0.00 +S 1007 5115 1 562322.704798958.70 0.00 +S 1007 5117 1 562363.604798987.40 0.00 +S 1007 5119 1 562404.604799016.10 0.00 +S 1007 5121 1 562445.504799044.80 0.00 +S 1007 5123 1 562486.504799073.40 0.00 +S 1007 5125 1 562527.504799102.10 0.00 +S 1007 5127 1 562568.404799130.80 0.00 +S 1007 5129 1 562609.404799159.50 0.00 +S 1007 5131 1 562650.304799188.20 0.00 +S 1007 5133 1 562691.304799216.80 0.00 +S 1007 5135 1 562732.204799245.50 0.00 +S 1009 4961 1 559197.604796709.50 0.00 +S 1009 4963 1 559238.604796738.20 0.00 +S 1009 4965 1 559279.504796766.90 0.00 +S 1009 4967 1 559320.504796795.50 0.00 +S 1009 4969 1 559361.404796824.20 0.00 +S 1009 4971 1 559402.404796852.90 0.00 +S 1009 4973 1 559443.404796881.60 0.00 +S 1009 4975 1 559484.304796910.30 0.00 +S 1009 4977 1 559525.304796938.90 0.00 +S 1009 4979 1 559566.204796967.60 0.00 +S 1009 4981 1 559607.204796996.30 0.00 +S 1009 4983 1 559648.104797025.00 0.00 +S 1009 4985 1 559689.104797053.60 0.00 +S 1009 4987 1 559730.104797082.30 0.00 +S 1009 4989 1 559771.004797111.00 0.00 +S 1009 4991 1 559812.004797139.70 0.00 +S 1009 4993 1 559852.904797168.40 0.00 +S 1009 4995 1 559893.904797197.00 0.00 +S 1009 4997 1 559934.804797225.70 0.00 +S 1009 4999 1 559975.804797254.40 0.00 +S 1009 5001 1 560016.804797283.10 0.00 +S 1009 5003 1 560057.704797311.80 0.00 +S 1009 5005 1 560098.704797340.40 0.00 +S 1009 5007 1 560139.604797369.10 0.00 +S 1009 5009 1 560180.604797397.80 0.00 +S 1009 5011 1 560221.504797426.50 0.00 +S 1009 5013 1 560262.504797455.20 0.00 +S 1009 5015 1 560303.504797483.80 0.00 +S 1009 5017 1 560344.404797512.50 0.00 +S 1009 5019 1 560385.404797541.20 0.00 +S 1009 5021 1 560426.304797569.90 0.00 +S 1009 5023 1 560467.304797598.50 0.00 +S 1009 5025 1 560508.304797627.20 0.00 +S 1009 5027 1 560549.204797655.90 0.00 +S 1009 5029 1 560590.204797684.60 0.00 +S 1009 5031 1 560631.104797713.30 0.00 +S 1009 5033 1 560672.104797741.90 0.00 +S 1009 5035 1 560713.004797770.60 0.00 +S 1009 5037 1 560754.004797799.30 0.00 +S 1009 5039 1 560795.004797828.00 0.00 +S 1009 5041 1 560835.904797856.70 0.00 +S 1009 5043 1 560876.904797885.30 0.00 +S 1009 5045 1 560917.804797914.00 0.00 +S 1009 5047 1 560958.804797942.70 0.00 +S 1009 5049 1 560999.704797971.40 0.00 +S 1009 5051 1 561040.704798000.00 0.00 +S 1009 5053 1 561081.704798028.70 0.00 +S 1009 5055 1 561122.604798057.40 0.00 +S 1009 5057 1 561163.604798086.10 0.00 +S 1009 5059 1 561204.504798114.80 0.00 +S 1009 5061 1 561245.504798143.40 0.00 +S 1009 5063 1 561286.404798172.10 0.00 +S 1009 5065 1 561327.404798200.80 0.00 +S 1009 5067 1 561368.404798229.50 0.00 +S 1009 5069 1 561409.304798258.20 0.00 +S 1009 5071 1 561450.304798286.80 0.00 +S 1009 5073 1 561491.204798315.50 0.00 +S 1009 5075 1 561532.204798344.20 0.00 +S 1009 5077 1 561573.104798372.90 0.00 +S 1009 5079 1 561614.104798401.60 0.00 +S 1009 5081 1 561655.104798430.20 0.00 +S 1009 5083 1 561696.004798458.90 0.00 +S 1009 5085 1 561737.004798487.60 0.00 +S 1009 5087 1 561777.904798516.30 0.00 +S 1009 5089 1 561818.904798544.90 0.00 +S 1009 5091 1 561859.904798573.60 0.00 +S 1009 5093 1 561900.804798602.30 0.00 +S 1009 5095 1 561941.804798631.00 0.00 +S 1009 5097 1 561982.704798659.70 0.00 +S 1009 5099 1 562023.704798688.30 0.00 +S 1009 5101 1 562064.604798717.00 0.00 +S 1009 5103 1 562105.604798745.70 0.00 +S 1009 5105 1 562146.604798774.40 0.00 +S 1009 5107 1 562187.504798803.10 0.00 +S 1009 5109 1 562228.504798831.70 0.00 +S 1009 5111 1 562269.404798860.40 0.00 +S 1009 5113 1 562310.404798889.10 0.00 +S 1009 5115 1 562351.304798917.80 0.00 +S 1009 5117 1 562392.304798946.40 0.00 +S 1009 5119 1 562433.304798975.10 0.00 +S 1009 5121 1 562474.204799003.80 0.00 +S 1009 5123 1 562515.204799032.50 0.00 +S 1009 5125 1 562556.104799061.20 0.00 +S 1009 5127 1 562597.104799089.80 0.00 +S 1009 5129 1 562638.004799118.50 0.00 +S 1009 5131 1 562679.004799147.20 0.00 +S 1009 5133 1 562720.004799175.90 0.00 +S 1009 5135 1 562760.904799204.60 0.00 +S 1011 4961 1 559226.304796668.50 0.00 +S 1011 4963 1 559267.204796697.20 0.00 +S 1011 4965 1 559308.204796725.90 0.00 +S 1011 4967 1 559349.204796754.60 0.00 +S 1011 4969 1 559390.104796783.30 0.00 +S 1011 4971 1 559431.104796811.90 0.00 +S 1011 4973 1 559472.004796840.60 0.00 +S 1011 4975 1 559513.004796869.30 0.00 +S 1011 4977 1 559553.904796898.00 0.00 +S 1011 4979 1 559594.904796926.70 0.00 +S 1011 4981 1 559635.904796955.30 0.00 +S 1011 4983 1 559676.804796984.00 0.00 +S 1011 4985 1 559717.804797012.70 0.00 +S 1011 4987 1 559758.704797041.40 0.00 +S 1011 4989 1 559799.704797070.00 0.00 +S 1011 4991 1 559840.704797098.70 0.00 +S 1011 4993 1 559881.604797127.40 0.00 +S 1011 4995 1 559922.604797156.10 0.00 +S 1011 4997 1 559963.504797184.80 0.00 +S 1011 4999 1 560004.504797213.40 0.00 +S 1011 5001 1 560045.404797242.10 0.00 +S 1011 5003 1 560086.404797270.80 0.00 +S 1011 5005 1 560127.404797299.50 0.00 +S 1011 5007 1 560168.304797328.20 0.00 +S 1011 5009 1 560209.304797356.80 0.00 +S 1011 5011 1 560250.204797385.50 0.00 +S 1011 5013 1 560291.204797414.20 0.00 +S 1011 5015 1 560332.104797442.90 0.00 +S 1011 5017 1 560373.104797471.60 0.00 +S 1011 5019 1 560414.104797500.20 0.00 +S 1011 5021 1 560455.004797528.90 0.00 +S 1011 5023 1 560496.004797557.60 0.00 +S 1011 5025 1 560536.904797586.30 0.00 +S 1011 5027 1 560577.904797614.90 0.00 +S 1011 5029 1 560618.804797643.60 0.00 +S 1011 5031 1 560659.804797672.30 0.00 +S 1011 5033 1 560700.804797701.00 0.00 +S 1011 5035 1 560741.704797729.70 0.00 +S 1011 5037 1 560782.704797758.30 0.00 +S 1011 5039 1 560823.604797787.00 0.00 +S 1011 5041 1 560864.604797815.70 0.00 +S 1011 5043 1 560905.504797844.40 0.00 +S 1011 5045 1 560946.504797873.10 0.00 +S 1011 5047 1 560987.504797901.70 0.00 +S 1011 5049 1 561028.404797930.40 0.00 +S 1011 5051 1 561069.404797959.10 0.00 +S 1011 5053 1 561110.304797987.80 0.00 +S 1011 5055 1 561151.304798016.40 0.00 +S 1011 5057 1 561192.304798045.10 0.00 +S 1011 5059 1 561233.204798073.80 0.00 +S 1011 5061 1 561274.204798102.50 0.00 +S 1011 5063 1 561315.104798131.20 0.00 +S 1011 5065 1 561356.104798159.80 0.00 +S 1011 5067 1 561397.004798188.50 0.00 +S 1011 5069 1 561438.004798217.20 0.00 +S 1011 5071 1 561479.004798245.90 0.00 +S 1011 5073 1 561519.904798274.60 0.00 +S 1011 5075 1 561560.904798303.20 0.00 +S 1011 5077 1 561601.804798331.90 0.00 +S 1011 5079 1 561642.804798360.60 0.00 +S 1011 5081 1 561683.704798389.30 0.00 +S 1011 5083 1 561724.704798418.00 0.00 +S 1011 5085 1 561765.704798446.60 0.00 +S 1011 5087 1 561806.604798475.30 0.00 +S 1011 5089 1 561847.604798504.00 0.00 +S 1011 5091 1 561888.504798532.70 0.00 +S 1011 5093 1 561929.504798561.30 0.00 +S 1011 5095 1 561970.404798590.00 0.00 +S 1011 5097 1 562011.404798618.70 0.00 +S 1011 5099 1 562052.404798647.40 0.00 +S 1011 5101 1 562093.304798676.10 0.00 +S 1011 5103 1 562134.304798704.70 0.00 +S 1011 5105 1 562175.204798733.40 0.00 +S 1011 5107 1 562216.204798762.10 0.00 +S 1011 5109 1 562257.104798790.80 0.00 +S 1011 5111 1 562298.104798819.50 0.00 +S 1011 5113 1 562339.104798848.10 0.00 +S 1011 5115 1 562380.004798876.80 0.00 +S 1011 5117 1 562421.004798905.50 0.00 +S 1011 5119 1 562461.904798934.20 0.00 +S 1011 5121 1 562502.904798962.80 0.00 +S 1011 5123 1 562543.904798991.50 0.00 +S 1011 5125 1 562584.804799020.20 0.00 +S 1011 5127 1 562625.804799048.90 0.00 +S 1011 5129 1 562666.704799077.60 0.00 +S 1011 5131 1 562707.704799106.20 0.00 +S 1011 5133 1 562748.604799134.90 0.00 +S 1011 5135 1 562789.604799163.60 0.00 +S 1013 4961 1 559255.004796627.60 0.00 +S 1013 4963 1 559295.904796656.30 0.00 +S 1013 4965 1 559336.904796684.90 0.00 +S 1013 4967 1 559377.804796713.60 0.00 +S 1013 4969 1 559418.804796742.30 0.00 +S 1013 4971 1 559459.804796771.00 0.00 +S 1013 4973 1 559500.704796799.70 0.00 +S 1013 4975 1 559541.704796828.30 0.00 +S 1013 4977 1 559582.604796857.00 0.00 +S 1013 4979 1 559623.604796885.70 0.00 +S 1013 4981 1 559664.504796914.40 0.00 +S 1013 4983 1 559705.504796943.10 0.00 +S 1013 4985 1 559746.504796971.70 0.00 +S 1013 4987 1 559787.404797000.40 0.00 +S 1013 4989 1 559828.404797029.10 0.00 +S 1013 4991 1 559869.304797057.80 0.00 +S 1013 4993 1 559910.304797086.40 0.00 +S 1013 4995 1 559951.204797115.10 0.00 +S 1013 4997 1 559992.204797143.80 0.00 +S 1013 4999 1 560033.204797172.50 0.00 +S 1013 5001 1 560074.104797201.20 0.00 +S 1013 5003 1 560115.104797229.80 0.00 +S 1013 5005 1 560156.004797258.50 0.00 +S 1013 5007 1 560197.004797287.20 0.00 +S 1013 5009 1 560237.904797315.90 0.00 +S 1013 5011 1 560278.904797344.60 0.00 +S 1013 5013 1 560319.904797373.20 0.00 +S 1013 5015 1 560360.804797401.90 0.00 +S 1013 5017 1 560401.804797430.60 0.00 +S 1013 5019 1 560442.704797459.30 0.00 +S 1013 5021 1 560483.704797488.00 0.00 +S 1013 5023 1 560524.704797516.60 0.00 +S 1013 5025 1 560565.604797545.30 0.00 +S 1013 5027 1 560606.604797574.00 0.00 +S 1013 5029 1 560647.504797602.70 0.00 +S 1013 5031 1 560688.504797631.30 0.00 +S 1013 5033 1 560729.404797660.00 0.00 +S 1013 5035 1 560770.404797688.70 0.00 +S 1013 5037 1 560811.404797717.40 0.00 +S 1013 5039 1 560852.304797746.10 0.00 +S 1013 5041 1 560893.304797774.70 0.00 +S 1013 5043 1 560934.204797803.40 0.00 +S 1013 5045 1 560975.204797832.10 0.00 +S 1013 5047 1 561016.104797860.80 0.00 +S 1013 5049 1 561057.104797889.50 0.00 +S 1013 5051 1 561098.104797918.10 0.00 +S 1013 5053 1 561139.004797946.80 0.00 +S 1013 5055 1 561180.004797975.50 0.00 +S 1013 5057 1 561220.904798004.20 0.00 +S 1013 5059 1 561261.904798032.80 0.00 +S 1013 5061 1 561302.804798061.50 0.00 +S 1013 5063 1 561343.804798090.20 0.00 +S 1013 5065 1 561384.804798118.90 0.00 +S 1013 5067 1 561425.704798147.60 0.00 +S 1013 5069 1 561466.704798176.20 0.00 +S 1013 5071 1 561507.604798204.90 0.00 +S 1013 5073 1 561548.604798233.60 0.00 +S 1013 5075 1 561589.504798262.30 0.00 +S 1013 5077 1 561630.504798291.00 0.00 +S 1013 5079 1 561671.504798319.60 0.00 +S 1013 5081 1 561712.404798348.30 0.00 +S 1013 5083 1 561753.404798377.00 0.00 +S 1013 5085 1 561794.304798405.70 0.00 +S 1013 5087 1 561835.304798434.40 0.00 +S 1013 5089 1 561876.304798463.00 0.00 +S 1013 5091 1 561917.204798491.70 0.00 +S 1013 5093 1 561958.204798520.40 0.00 +S 1013 5095 1 561999.104798549.10 0.00 +S 1013 5097 1 562040.104798577.70 0.00 +S 1013 5099 1 562081.004798606.40 0.00 +S 1013 5101 1 562122.004798635.10 0.00 +S 1013 5103 1 562163.004798663.80 0.00 +S 1013 5105 1 562203.904798692.50 0.00 +S 1013 5107 1 562244.904798721.10 0.00 +S 1013 5109 1 562285.804798749.80 0.00 +S 1013 5111 1 562326.804798778.50 0.00 +S 1013 5113 1 562367.704798807.20 0.00 +S 1013 5115 1 562408.704798835.90 0.00 +S 1013 5117 1 562449.704798864.50 0.00 +S 1013 5119 1 562490.604798893.20 0.00 +S 1013 5121 1 562531.604798921.90 0.00 +S 1013 5123 1 562572.504798950.60 0.00 +S 1013 5125 1 562613.504798979.20 0.00 +S 1013 5127 1 562654.404799007.90 0.00 +S 1013 5129 1 562695.404799036.60 0.00 +S 1013 5131 1 562736.404799065.30 0.00 +S 1013 5133 1 562777.304799094.00 0.00 +S 1013 5135 1 562818.304799122.60 0.00 +S 1015 4961 1 559283.604796586.60 0.00 +S 1015 4963 1 559324.604796615.30 0.00 +S 1015 4965 1 559365.604796644.00 0.00 +S 1015 4967 1 559406.504796672.70 0.00 +S 1015 4969 1 559447.504796701.30 0.00 +S 1015 4971 1 559488.404796730.00 0.00 +S 1015 4973 1 559529.404796758.70 0.00 +S 1015 4975 1 559570.304796787.40 0.00 +S 1015 4977 1 559611.304796816.10 0.00 +S 1015 4979 1 559652.304796844.70 0.00 +S 1015 4981 1 559693.204796873.40 0.00 +S 1015 4983 1 559734.204796902.10 0.00 +S 1015 4985 1 559775.104796930.80 0.00 +S 1015 4987 1 559816.104796959.50 0.00 +S 1015 4989 1 559857.104796988.10 0.00 +S 1015 4991 1 559898.004797016.80 0.00 +S 1015 4993 1 559939.004797045.50 0.00 +S 1015 4995 1 559979.904797074.20 0.00 +S 1015 4997 1 560020.904797102.80 0.00 +S 1015 4999 1 560061.804797131.50 0.00 +S 1015 5001 1 560102.804797160.20 0.00 +S 1015 5003 1 560143.804797188.90 0.00 +S 1015 5005 1 560184.704797217.60 0.00 +S 1015 5007 1 560225.704797246.20 0.00 +S 1015 5009 1 560266.604797274.90 0.00 +S 1015 5011 1 560307.604797303.60 0.00 +S 1015 5013 1 560348.504797332.30 0.00 +S 1015 5015 1 560389.504797361.00 0.00 +S 1015 5017 1 560430.504797389.60 0.00 +S 1015 5019 1 560471.404797418.30 0.00 +S 1015 5021 1 560512.404797447.00 0.00 +S 1015 5023 1 560553.304797475.70 0.00 +S 1015 5025 1 560594.304797504.40 0.00 +S 1015 5027 1 560635.204797533.00 0.00 +S 1015 5029 1 560676.204797561.70 0.00 +S 1015 5031 1 560717.204797590.40 0.00 +S 1015 5033 1 560758.104797619.10 0.00 +S 1015 5035 1 560799.104797647.70 0.00 +S 1015 5037 1 560840.004797676.40 0.00 +S 1015 5039 1 560881.004797705.10 0.00 +S 1015 5041 1 560921.904797733.80 0.00 +S 1015 5043 1 560962.904797762.50 0.00 +S 1015 5045 1 561003.904797791.10 0.00 +S 1015 5047 1 561044.804797819.80 0.00 +S 1015 5049 1 561085.804797848.50 0.00 +S 1015 5051 1 561126.704797877.20 0.00 +S 1015 5053 1 561167.704797905.90 0.00 +S 1015 5055 1 561208.704797934.50 0.00 +S 1015 5057 1 561249.604797963.20 0.00 +S 1015 5059 1 561290.604797991.90 0.00 +S 1015 5061 1 561331.504798020.60 0.00 +S 1015 5063 1 561372.504798049.20 0.00 +S 1015 5065 1 561413.404798077.90 0.00 +S 1015 5067 1 561454.404798106.60 0.00 +S 1015 5069 1 561495.404798135.30 0.00 +S 1015 5071 1 561536.304798164.00 0.00 +S 1015 5073 1 561577.304798192.60 0.00 +S 1015 5075 1 561618.204798221.30 0.00 +S 1015 5077 1 561659.204798250.00 0.00 +S 1015 5079 1 561700.104798278.70 0.00 +S 1015 5081 1 561741.104798307.40 0.00 +S 1015 5083 1 561782.104798336.00 0.00 +S 1015 5085 1 561823.004798364.70 0.00 +S 1015 5087 1 561864.004798393.40 0.00 +S 1015 5089 1 561904.904798422.10 0.00 +S 1015 5091 1 561945.904798450.80 0.00 +S 1015 5093 1 561986.804798479.40 0.00 +S 1015 5095 1 562027.804798508.10 0.00 +S 1015 5097 1 562068.804798536.80 0.00 +S 1015 5099 1 562109.704798565.50 0.00 +S 1015 5101 1 562150.704798594.10 0.00 +S 1015 5103 1 562191.604798622.80 0.00 +S 1015 5105 1 562232.604798651.50 0.00 +S 1015 5107 1 562273.504798680.20 0.00 +S 1015 5109 1 562314.504798708.90 0.00 +S 1015 5111 1 562355.504798737.50 0.00 +S 1015 5113 1 562396.404798766.20 0.00 +S 1015 5115 1 562437.404798794.90 0.00 +S 1015 5117 1 562478.304798823.60 0.00 +S 1015 5119 1 562519.304798852.30 0.00 +S 1015 5121 1 562560.304798880.90 0.00 +S 1015 5123 1 562601.204798909.60 0.00 +S 1015 5125 1 562642.204798938.30 0.00 +S 1015 5127 1 562683.104798967.00 0.00 +S 1015 5129 1 562724.104798995.60 0.00 +S 1015 5131 1 562765.004799024.30 0.00 +S 1015 5133 1 562806.004799053.00 0.00 +S 1015 5135 1 562847.004799081.70 0.00 +S 1017 4961 1 559312.304796545.70 0.00 +S 1017 4963 1 559353.304796574.30 0.00 +S 1017 4965 1 559394.204796603.00 0.00 +S 1017 4967 1 559435.204796631.70 0.00 +S 1017 4969 1 559476.204796660.40 0.00 +S 1017 4971 1 559517.104796689.10 0.00 +S 1017 4973 1 559558.104796717.70 0.00 +S 1017 4975 1 559599.004796746.40 0.00 +S 1017 4977 1 559640.004796775.10 0.00 +S 1017 4979 1 559680.904796803.80 0.00 +S 1017 4981 1 559721.904796832.50 0.00 +S 1017 4983 1 559762.904796861.10 0.00 +S 1017 4985 1 559803.804796889.80 0.00 +S 1017 4987 1 559844.804796918.50 0.00 +S 1017 4989 1 559885.704796947.20 0.00 +S 1017 4991 1 559926.704796975.90 0.00 +S 1017 4993 1 559967.604797004.50 0.00 +S 1017 4995 1 560008.604797033.20 0.00 +S 1017 4997 1 560049.604797061.90 0.00 +S 1017 4999 1 560090.504797090.60 0.00 +S 1017 5001 1 560131.504797119.20 0.00 +S 1017 5003 1 560172.404797147.90 0.00 +S 1017 5005 1 560213.404797176.60 0.00 +S 1017 5007 1 560254.304797205.30 0.00 +S 1017 5009 1 560295.304797234.00 0.00 +S 1017 5011 1 560336.304797262.60 0.00 +S 1017 5013 1 560377.204797291.30 0.00 +S 1017 5015 1 560418.204797320.00 0.00 +S 1017 5017 1 560459.104797348.70 0.00 +S 1017 5019 1 560500.104797377.40 0.00 +S 1017 5021 1 560541.104797406.00 0.00 +S 1017 5023 1 560582.004797434.70 0.00 +S 1017 5025 1 560623.004797463.40 0.00 +S 1017 5027 1 560663.904797492.10 0.00 +S 1017 5029 1 560704.904797520.80 0.00 +S 1017 5031 1 560745.804797549.40 0.00 +S 1017 5033 1 560786.804797578.10 0.00 +S 1017 5035 1 560827.804797606.80 0.00 +S 1017 5037 1 560868.704797635.50 0.00 +S 1017 5039 1 560909.704797664.10 0.00 +S 1017 5041 1 560950.604797692.80 0.00 +S 1017 5043 1 560991.604797721.50 0.00 +S 1017 5045 1 561032.504797750.20 0.00 +S 1017 5047 1 561073.504797778.90 0.00 +S 1017 5049 1 561114.504797807.50 0.00 +S 1017 5051 1 561155.404797836.20 0.00 +S 1017 5053 1 561196.404797864.90 0.00 +S 1017 5055 1 561237.304797893.60 0.00 +S 1017 5057 1 561278.304797922.30 0.00 +S 1017 5059 1 561319.204797950.90 0.00 +S 1017 5061 1 561360.204797979.60 0.00 +S 1017 5063 1 561401.204798008.30 0.00 +S 1017 5065 1 561442.104798037.00 0.00 +S 1017 5067 1 561483.104798065.60 0.00 +S 1017 5069 1 561524.004798094.30 0.00 +S 1017 5071 1 561565.004798123.00 0.00 +S 1017 5073 1 561605.904798151.70 0.00 +S 1017 5075 1 561646.904798180.40 0.00 +S 1017 5077 1 561687.904798209.00 0.00 +S 1017 5079 1 561728.804798237.70 0.00 +S 1017 5081 1 561769.804798266.40 0.00 +S 1017 5083 1 561810.704798295.10 0.00 +S 1017 5085 1 561851.704798323.80 0.00 +S 1017 5087 1 561892.704798352.40 0.00 +S 1017 5089 1 561933.604798381.10 0.00 +S 1017 5091 1 561974.604798409.80 0.00 +S 1017 5093 1 562015.504798438.50 0.00 +S 1017 5095 1 562056.504798467.20 0.00 +S 1017 5097 1 562097.404798495.80 0.00 +S 1017 5099 1 562138.404798524.50 0.00 +S 1017 5101 1 562179.404798553.20 0.00 +S 1017 5103 1 562220.304798581.90 0.00 +S 1017 5105 1 562261.304798610.50 0.00 +S 1017 5107 1 562302.204798639.20 0.00 +S 1017 5109 1 562343.204798667.90 0.00 +S 1017 5111 1 562384.104798696.60 0.00 +S 1017 5113 1 562425.104798725.30 0.00 +S 1017 5115 1 562466.104798753.90 0.00 +S 1017 5117 1 562507.004798782.60 0.00 +S 1017 5119 1 562548.004798811.30 0.00 +S 1017 5121 1 562588.904798840.00 0.00 +S 1017 5123 1 562629.904798868.70 0.00 +S 1017 5125 1 562670.804798897.30 0.00 +S 1017 5127 1 562711.804798926.00 0.00 +S 1017 5129 1 562752.804798954.70 0.00 +S 1017 5131 1 562793.704798983.40 0.00 +S 1017 5133 1 562834.704799012.00 0.00 +S 1017 5135 1 562875.604799040.70 0.00 +S 1019 4961 1 559341.004796504.70 0.00 +S 1019 4963 1 559382.004796533.40 0.00 +S 1019 4965 1 559422.904796562.10 0.00 +S 1019 4967 1 559463.904796590.70 0.00 +S 1019 4969 1 559504.804796619.40 0.00 +S 1019 4971 1 559545.804796648.10 0.00 +S 1019 4973 1 559586.704796676.80 0.00 +S 1019 4975 1 559627.704796705.50 0.00 +S 1019 4977 1 559668.704796734.10 0.00 +S 1019 4979 1 559709.604796762.80 0.00 +S 1019 4981 1 559750.604796791.50 0.00 +S 1019 4983 1 559791.504796820.20 0.00 +S 1019 4985 1 559832.504796848.90 0.00 +S 1019 4987 1 559873.504796877.50 0.00 +S 1019 4989 1 559914.404796906.20 0.00 +S 1019 4991 1 559955.404796934.90 0.00 +S 1019 4993 1 559996.304796963.60 0.00 +S 1019 4995 1 560037.304796992.30 0.00 +S 1019 4997 1 560078.204797020.90 0.00 +S 1019 4999 1 560119.204797049.60 0.00 +S 1019 5001 1 560160.204797078.30 0.00 +S 1019 5003 1 560201.104797107.00 0.00 +S 1019 5005 1 560242.104797135.60 0.00 +S 1019 5007 1 560283.004797164.30 0.00 +S 1019 5009 1 560324.004797193.00 0.00 +S 1019 5011 1 560364.904797221.70 0.00 +S 1019 5013 1 560405.904797250.40 0.00 +S 1019 5015 1 560446.904797279.00 0.00 +S 1019 5017 1 560487.804797307.70 0.00 +S 1019 5019 1 560528.804797336.40 0.00 +S 1019 5021 1 560569.704797365.10 0.00 +S 1019 5023 1 560610.704797393.80 0.00 +S 1019 5025 1 560651.604797422.40 0.00 +S 1019 5027 1 560692.604797451.10 0.00 +S 1019 5029 1 560733.604797479.80 0.00 +S 1019 5031 1 560774.504797508.50 0.00 +S 1019 5033 1 560815.504797537.20 0.00 +S 1019 5035 1 560856.404797565.80 0.00 +S 1019 5037 1 560897.404797594.50 0.00 +S 1019 5039 1 560938.304797623.20 0.00 +S 1019 5041 1 560979.304797651.90 0.00 +S 1019 5043 1 561020.304797680.50 0.00 +S 1019 5045 1 561061.204797709.20 0.00 +S 1019 5047 1 561102.204797737.90 0.00 +S 1019 5049 1 561143.104797766.60 0.00 +S 1019 5051 1 561184.104797795.30 0.00 +S 1019 5053 1 561225.104797823.90 0.00 +S 1019 5055 1 561266.004797852.60 0.00 +S 1019 5057 1 561307.004797881.30 0.00 +S 1019 5059 1 561347.904797910.00 0.00 +S 1019 5061 1 561388.904797938.70 0.00 +S 1019 5063 1 561429.804797967.30 0.00 +S 1019 5065 1 561470.804797996.00 0.00 +S 1019 5067 1 561511.804798024.70 0.00 +S 1019 5069 1 561552.704798053.40 0.00 +S 1019 5071 1 561593.704798082.00 0.00 +S 1019 5073 1 561634.604798110.70 0.00 +S 1019 5075 1 561675.604798139.40 0.00 +S 1019 5077 1 561716.504798168.10 0.00 +S 1019 5079 1 561757.504798196.80 0.00 +S 1019 5081 1 561798.504798225.40 0.00 +S 1019 5083 1 561839.404798254.10 0.00 +S 1019 5085 1 561880.404798282.80 0.00 +S 1019 5087 1 561921.304798311.50 0.00 +S 1019 5089 1 561962.304798340.20 0.00 +S 1019 5091 1 562003.204798368.80 0.00 +S 1019 5093 1 562044.204798397.50 0.00 +S 1019 5095 1 562085.204798426.20 0.00 +S 1019 5097 1 562126.104798454.90 0.00 +S 1019 5099 1 562167.104798483.60 0.00 +S 1019 5101 1 562208.004798512.20 0.00 +S 1019 5103 1 562249.004798540.90 0.00 +S 1019 5105 1 562289.904798569.60 0.00 +S 1019 5107 1 562330.904798598.30 0.00 +S 1019 5109 1 562371.904798626.90 0.00 +S 1019 5111 1 562412.804798655.60 0.00 +S 1019 5113 1 562453.804798684.30 0.00 +S 1019 5115 1 562494.704798713.00 0.00 +S 1019 5117 1 562535.704798741.70 0.00 +S 1019 5119 1 562576.704798770.30 0.00 +S 1019 5121 1 562617.604798799.00 0.00 +S 1019 5123 1 562658.604798827.70 0.00 +S 1019 5125 1 562699.504798856.40 0.00 +S 1019 5127 1 562740.504798885.10 0.00 +S 1019 5129 1 562781.404798913.70 0.00 +S 1019 5131 1 562822.404798942.40 0.00 +S 1019 5133 1 562863.404798971.10 0.00 +S 1019 5135 1 562904.304798999.80 0.00 +S 1021 4961 1 559369.704796463.80 0.00 +S 1021 4963 1 559410.604796492.40 0.00 +S 1021 4965 1 559451.604796521.10 0.00 +S 1021 4967 1 559492.604796549.80 0.00 +S 1021 4969 1 559533.504796578.50 0.00 +S 1021 4971 1 559574.504796607.10 0.00 +S 1021 4973 1 559615.404796635.80 0.00 +S 1021 4975 1 559656.404796664.50 0.00 +S 1021 4977 1 559697.304796693.20 0.00 +S 1021 4979 1 559738.304796721.90 0.00 +S 1021 4981 1 559779.304796750.50 0.00 +S 1021 4983 1 559820.204796779.20 0.00 +S 1021 4985 1 559861.204796807.90 0.00 +S 1021 4987 1 559902.104796836.60 0.00 +S 1021 4989 1 559943.104796865.30 0.00 +S 1021 4991 1 559984.004796893.90 0.00 +S 1021 4993 1 560025.004796922.60 0.00 +S 1021 4995 1 560066.004796951.30 0.00 +S 1021 4997 1 560106.904796980.00 0.00 +S 1021 4999 1 560147.904797008.70 0.00 +S 1021 5001 1 560188.804797037.30 0.00 +S 1021 5003 1 560229.804797066.00 0.00 +S 1021 5005 1 560270.704797094.70 0.00 +S 1021 5007 1 560311.704797123.40 0.00 +S 1021 5009 1 560352.704797152.00 0.00 +S 1021 5011 1 560393.604797180.70 0.00 +S 1021 5013 1 560434.604797209.40 0.00 +S 1021 5015 1 560475.504797238.10 0.00 +S 1021 5017 1 560516.504797266.80 0.00 +S 1021 5019 1 560557.504797295.40 0.00 +S 1021 5021 1 560598.404797324.10 0.00 +S 1021 5023 1 560639.404797352.80 0.00 +S 1021 5025 1 560680.304797381.50 0.00 +S 1021 5027 1 560721.304797410.20 0.00 +S 1021 5029 1 560762.204797438.80 0.00 +S 1021 5031 1 560803.204797467.50 0.00 +S 1021 5033 1 560844.204797496.20 0.00 +S 1021 5035 1 560885.104797524.90 0.00 +S 1021 5037 1 560926.104797553.60 0.00 +S 1021 5039 1 560967.004797582.20 0.00 +S 1021 5041 1 561008.004797610.90 0.00 +S 1021 5043 1 561048.904797639.60 0.00 +S 1021 5045 1 561089.904797668.30 0.00 +S 1021 5047 1 561130.904797696.90 0.00 +S 1021 5049 1 561171.804797725.60 0.00 +S 1021 5051 1 561212.804797754.30 0.00 +S 1021 5053 1 561253.704797783.00 0.00 +S 1021 5055 1 561294.704797811.70 0.00 +S 1021 5057 1 561335.604797840.30 0.00 +S 1021 5059 1 561376.604797869.00 0.00 +S 1021 5061 1 561417.604797897.70 0.00 +S 1021 5063 1 561458.504797926.40 0.00 +S 1021 5065 1 561499.504797955.10 0.00 +S 1021 5067 1 561540.404797983.70 0.00 +S 1021 5069 1 561581.404798012.40 0.00 +S 1021 5071 1 561622.304798041.10 0.00 +S 1021 5073 1 561663.304798069.80 0.00 +S 1021 5075 1 561704.304798098.40 0.00 +S 1021 5077 1 561745.204798127.10 0.00 +S 1021 5079 1 561786.204798155.80 0.00 +S 1021 5081 1 561827.104798184.50 0.00 +S 1021 5083 1 561868.104798213.20 0.00 +S 1021 5085 1 561909.104798241.80 0.00 +S 1021 5087 1 561950.004798270.50 0.00 +S 1021 5089 1 561991.004798299.20 0.00 +S 1021 5091 1 562031.904798327.90 0.00 +S 1021 5093 1 562072.904798356.60 0.00 +S 1021 5095 1 562113.804798385.20 0.00 +S 1021 5097 1 562154.804798413.90 0.00 +S 1021 5099 1 562195.804798442.60 0.00 +S 1021 5101 1 562236.704798471.30 0.00 +S 1021 5103 1 562277.704798500.00 0.00 +S 1021 5105 1 562318.604798528.60 0.00 +S 1021 5107 1 562359.604798557.30 0.00 +S 1021 5109 1 562400.504798586.00 0.00 +S 1021 5111 1 562441.504798614.70 0.00 +S 1021 5113 1 562482.504798643.30 0.00 +S 1021 5115 1 562523.404798672.00 0.00 +S 1021 5117 1 562564.404798700.70 0.00 +S 1021 5119 1 562605.304798729.40 0.00 +S 1021 5121 1 562646.304798758.10 0.00 +S 1021 5123 1 562687.204798786.70 0.00 +S 1021 5125 1 562728.204798815.40 0.00 +S 1021 5127 1 562769.204798844.10 0.00 +S 1021 5129 1 562810.104798872.80 0.00 +S 1021 5131 1 562851.104798901.50 0.00 +S 1021 5133 1 562892.004798930.10 0.00 +S 1021 5135 1 562933.004798958.80 0.00 +S 1023 4961 1 559398.404796422.80 0.00 +S 1023 4963 1 559439.304796451.50 0.00 +S 1023 4965 1 559480.304796480.20 0.00 +S 1023 4967 1 559521.204796508.80 0.00 +S 1023 4969 1 559562.204796537.50 0.00 +S 1023 4971 1 559603.104796566.20 0.00 +S 1023 4973 1 559644.104796594.90 0.00 +S 1023 4975 1 559685.104796623.50 0.00 +S 1023 4977 1 559726.004796652.20 0.00 +S 1023 4979 1 559767.004796680.90 0.00 +S 1023 4981 1 559807.904796709.60 0.00 +S 1023 4983 1 559848.904796738.30 0.00 +S 1023 4985 1 559889.904796766.90 0.00 +S 1023 4987 1 559930.804796795.60 0.00 +S 1023 4989 1 559971.804796824.30 0.00 +S 1023 4991 1 560012.704796853.00 0.00 +S 1023 4993 1 560053.704796881.70 0.00 +S 1023 4995 1 560094.604796910.30 0.00 +S 1023 4997 1 560135.604796939.00 0.00 +S 1023 4999 1 560176.604796967.70 0.00 +S 1023 5001 1 560217.504796996.40 0.00 +S 1023 5003 1 560258.504797025.10 0.00 +S 1023 5005 1 560299.404797053.70 0.00 +S 1023 5007 1 560340.404797082.40 0.00 +S 1023 5009 1 560381.304797111.10 0.00 +S 1023 5011 1 560422.304797139.80 0.00 +S 1023 5013 1 560463.304797168.40 0.00 +S 1023 5015 1 560504.204797197.10 0.00 +S 1023 5017 1 560545.204797225.80 0.00 +S 1023 5019 1 560586.104797254.50 0.00 +S 1023 5021 1 560627.104797283.20 0.00 +S 1023 5023 1 560668.004797311.80 0.00 +S 1023 5025 1 560709.004797340.50 0.00 +S 1023 5027 1 560750.004797369.20 0.00 +S 1023 5029 1 560790.904797397.90 0.00 +S 1023 5031 1 560831.904797426.60 0.00 +S 1023 5033 1 560872.804797455.20 0.00 +S 1023 5035 1 560913.804797483.90 0.00 +S 1023 5037 1 560954.704797512.60 0.00 +S 1023 5039 1 560995.704797541.30 0.00 +S 1023 5041 1 561036.704797570.00 0.00 +S 1023 5043 1 561077.604797598.60 0.00 +S 1023 5045 1 561118.604797627.30 0.00 +S 1023 5047 1 561159.504797656.00 0.00 +S 1023 5049 1 561200.504797684.70 0.00 +S 1023 5051 1 561241.504797713.30 0.00 +S 1023 5053 1 561282.404797742.00 0.00 +S 1023 5055 1 561323.404797770.70 0.00 +S 1023 5057 1 561364.304797799.40 0.00 +S 1023 5059 1 561405.304797828.10 0.00 +S 1023 5061 1 561446.204797856.70 0.00 +S 1023 5063 1 561487.204797885.40 0.00 +S 1023 5065 1 561528.204797914.10 0.00 +S 1023 5067 1 561569.104797942.80 0.00 +S 1023 5069 1 561610.104797971.50 0.00 +S 1023 5071 1 561651.004798000.10 0.00 +S 1023 5073 1 561692.004798028.80 0.00 +S 1023 5075 1 561732.904798057.50 0.00 +S 1023 5077 1 561773.904798086.20 0.00 +S 1023 5079 1 561814.904798114.80 0.00 +S 1023 5081 1 561855.804798143.50 0.00 +S 1023 5083 1 561896.804798172.20 0.00 +S 1023 5085 1 561937.704798200.90 0.00 +S 1023 5087 1 561978.704798229.60 0.00 +S 1023 5089 1 562019.604798258.20 0.00 +S 1023 5091 1 562060.604798286.90 0.00 +S 1023 5093 1 562101.604798315.60 0.00 +S 1023 5095 1 562142.504798344.30 0.00 +S 1023 5097 1 562183.504798373.00 0.00 +S 1023 5099 1 562224.404798401.60 0.00 +S 1023 5101 1 562265.404798430.30 0.00 +S 1023 5103 1 562306.304798459.00 0.00 +S 1023 5105 1 562347.304798487.70 0.00 +S 1023 5107 1 562388.304798516.40 0.00 +S 1023 5109 1 562429.204798545.00 0.00 +S 1023 5111 1 562470.204798573.70 0.00 +S 1023 5113 1 562511.104798602.40 0.00 +S 1023 5115 1 562552.104798631.10 0.00 +S 1023 5117 1 562593.104798659.70 0.00 +S 1023 5119 1 562634.004798688.40 0.00 +S 1023 5121 1 562675.004798717.10 0.00 +S 1023 5123 1 562715.904798745.80 0.00 +S 1023 5125 1 562756.904798774.50 0.00 +S 1023 5127 1 562797.804798803.10 0.00 +S 1023 5129 1 562838.804798831.80 0.00 +S 1023 5131 1 562879.804798860.50 0.00 +S 1023 5133 1 562920.704798889.20 0.00 +S 1023 5135 1 562961.704798917.90 0.00 +S 1025 4961 1 559427.004796381.80 0.00 +S 1025 4963 1 559468.004796410.50 0.00 +S 1025 4965 1 559509.004796439.20 0.00 +S 1025 4967 1 559549.904796467.90 0.00 +S 1025 4969 1 559590.904796496.60 0.00 +S 1025 4971 1 559631.804796525.20 0.00 +S 1025 4973 1 559672.804796553.90 0.00 +S 1025 4975 1 559713.704796582.60 0.00 +S 1025 4977 1 559754.704796611.30 0.00 +S 1025 4979 1 559795.704796639.90 0.00 +S 1025 4981 1 559836.604796668.60 0.00 +S 1025 4983 1 559877.604796697.30 0.00 +S 1025 4985 1 559918.504796726.00 0.00 +S 1025 4987 1 559959.504796754.70 0.00 +S 1025 4989 1 560000.404796783.30 0.00 +S 1025 4991 1 560041.404796812.00 0.00 +S 1025 4993 1 560082.404796840.70 0.00 +S 1025 4995 1 560123.304796869.40 0.00 +S 1025 4997 1 560164.304796898.10 0.00 +S 1025 4999 1 560205.204796926.70 0.00 +S 1025 5001 1 560246.204796955.40 0.00 +S 1025 5003 1 560287.104796984.10 0.00 +S 1025 5005 1 560328.104797012.80 0.00 +S 1025 5007 1 560369.104797041.50 0.00 +S 1025 5009 1 560410.004797070.10 0.00 +S 1025 5011 1 560451.004797098.80 0.00 +S 1025 5013 1 560491.904797127.50 0.00 +S 1025 5015 1 560532.904797156.20 0.00 +S 1025 5017 1 560573.904797184.80 0.00 +S 1025 5019 1 560614.804797213.50 0.00 +S 1025 5021 1 560655.804797242.20 0.00 +S 1025 5023 1 560696.704797270.90 0.00 +S 1025 5025 1 560737.704797299.60 0.00 +S 1025 5027 1 560778.604797328.20 0.00 +S 1025 5029 1 560819.604797356.90 0.00 +S 1025 5031 1 560860.604797385.60 0.00 +S 1025 5033 1 560901.504797414.30 0.00 +S 1025 5035 1 560942.504797443.00 0.00 +S 1025 5037 1 560983.404797471.60 0.00 +S 1025 5039 1 561024.404797500.30 0.00 +S 1025 5041 1 561065.304797529.00 0.00 +S 1025 5043 1 561106.304797557.70 0.00 +S 1025 5045 1 561147.304797586.40 0.00 +S 1025 5047 1 561188.204797615.00 0.00 +S 1025 5049 1 561229.204797643.70 0.00 +S 1025 5051 1 561270.104797672.40 0.00 +S 1025 5053 1 561311.104797701.10 0.00 +S 1025 5055 1 561352.004797729.70 0.00 +S 1025 5057 1 561393.004797758.40 0.00 +S 1025 5059 1 561434.004797787.10 0.00 +S 1025 5061 1 561474.904797815.80 0.00 +S 1025 5063 1 561515.904797844.50 0.00 +S 1025 5065 1 561556.804797873.10 0.00 +S 1025 5067 1 561597.804797901.80 0.00 +S 1025 5069 1 561638.704797930.50 0.00 +S 1025 5071 1 561679.704797959.20 0.00 +S 1025 5073 1 561720.704797987.90 0.00 +S 1025 5075 1 561761.604798016.50 0.00 +S 1025 5077 1 561802.604798045.20 0.00 +S 1025 5079 1 561843.504798073.90 0.00 +S 1025 5081 1 561884.504798102.60 0.00 +S 1025 5083 1 561925.504798131.20 0.00 +S 1025 5085 1 561966.404798159.90 0.00 +S 1025 5087 1 562007.404798188.60 0.00 +S 1025 5089 1 562048.304798217.30 0.00 +S 1025 5091 1 562089.304798246.00 0.00 +S 1025 5093 1 562130.204798274.60 0.00 +S 1025 5095 1 562171.204798303.30 0.00 +S 1025 5097 1 562212.204798332.00 0.00 +S 1025 5099 1 562253.104798360.70 0.00 +S 1025 5101 1 562294.104798389.40 0.00 +S 1025 5103 1 562335.004798418.00 0.00 +S 1025 5105 1 562376.004798446.70 0.00 +S 1025 5107 1 562416.904798475.40 0.00 +S 1025 5109 1 562457.904798504.10 0.00 +S 1025 5111 1 562498.904798532.80 0.00 +S 1025 5113 1 562539.804798561.40 0.00 +S 1025 5115 1 562580.804798590.10 0.00 +S 1025 5117 1 562621.704798618.80 0.00 +S 1025 5119 1 562662.704798647.50 0.00 +S 1025 5121 1 562703.604798676.10 0.00 +S 1025 5123 1 562744.604798704.80 0.00 +S 1025 5125 1 562785.604798733.50 0.00 +S 1025 5127 1 562826.504798762.20 0.00 +S 1025 5129 1 562867.504798790.90 0.00 +S 1025 5131 1 562908.404798819.50 0.00 +S 1025 5133 1 562949.404798848.20 0.00 +S 1025 5135 1 562990.304798876.90 0.00 +S 1027 4961 1 559455.704796340.90 0.00 +S 1027 4963 1 559496.704796369.60 0.00 +S 1027 4965 1 559537.604796398.20 0.00 +S 1027 4967 1 559578.604796426.90 0.00 +S 1027 4969 1 559619.504796455.60 0.00 +S 1027 4971 1 559660.504796484.30 0.00 +S 1027 4973 1 559701.504796513.00 0.00 +S 1027 4975 1 559742.404796541.60 0.00 +S 1027 4977 1 559783.404796570.30 0.00 +S 1027 4979 1 559824.304796599.00 0.00 +S 1027 4981 1 559865.304796627.70 0.00 +S 1027 4983 1 559906.304796656.30 0.00 +S 1027 4985 1 559947.204796685.00 0.00 +S 1027 4987 1 559988.204796713.70 0.00 +S 1027 4989 1 560029.104796742.40 0.00 +S 1027 4991 1 560070.104796771.10 0.00 +S 1027 4993 1 560111.004796799.70 0.00 +S 1027 4995 1 560152.004796828.40 0.00 +S 1027 4997 1 560193.004796857.10 0.00 +S 1027 4999 1 560233.904796885.80 0.00 +S 1027 5001 1 560274.904796914.50 0.00 +S 1027 5003 1 560315.804796943.10 0.00 +S 1027 5005 1 560356.804796971.80 0.00 +S 1027 5007 1 560397.704797000.50 0.00 +S 1027 5009 1 560438.704797029.20 0.00 +S 1027 5011 1 560479.704797057.90 0.00 +S 1027 5013 1 560520.604797086.50 0.00 +S 1027 5015 1 560561.604797115.20 0.00 +S 1027 5017 1 560602.504797143.90 0.00 +S 1027 5019 1 560643.504797172.60 0.00 +S 1027 5021 1 560684.404797201.20 0.00 +S 1027 5023 1 560725.404797229.90 0.00 +S 1027 5025 1 560766.404797258.60 0.00 +S 1027 5027 1 560807.304797287.30 0.00 +S 1027 5029 1 560848.304797316.00 0.00 +S 1027 5031 1 560889.204797344.60 0.00 +S 1027 5033 1 560930.204797373.30 0.00 +S 1027 5035 1 560971.104797402.00 0.00 +S 1027 5037 1 561012.104797430.70 0.00 +S 1027 5039 1 561053.104797459.40 0.00 +S 1027 5041 1 561094.004797488.00 0.00 +S 1027 5043 1 561135.004797516.70 0.00 +S 1027 5045 1 561175.904797545.40 0.00 +S 1027 5047 1 561216.904797574.10 0.00 +S 1027 5049 1 561257.904797602.80 0.00 +S 1027 5051 1 561298.804797631.40 0.00 +S 1027 5053 1 561339.804797660.10 0.00 +S 1027 5055 1 561380.704797688.80 0.00 +S 1027 5057 1 561421.704797717.50 0.00 +S 1027 5059 1 561462.604797746.10 0.00 +S 1027 5061 1 561503.604797774.80 0.00 +S 1027 5063 1 561544.604797803.50 0.00 +S 1027 5065 1 561585.504797832.20 0.00 +S 1027 5067 1 561626.504797860.90 0.00 +S 1027 5069 1 561667.404797889.50 0.00 +S 1027 5071 1 561708.404797918.20 0.00 +S 1027 5073 1 561749.304797946.90 0.00 +S 1027 5075 1 561790.304797975.60 0.00 +S 1027 5077 1 561831.304798004.30 0.00 +S 1027 5079 1 561872.204798032.90 0.00 +S 1027 5081 1 561913.204798061.60 0.00 +S 1027 5083 1 561954.104798090.30 0.00 +S 1027 5085 1 561995.104798119.00 0.00 +S 1027 5087 1 562036.004798147.60 0.00 +S 1027 5089 1 562077.004798176.30 0.00 +S 1027 5091 1 562118.004798205.00 0.00 +S 1027 5093 1 562158.904798233.70 0.00 +S 1027 5095 1 562199.904798262.40 0.00 +S 1027 5097 1 562240.804798291.00 0.00 +S 1027 5099 1 562281.804798319.70 0.00 +S 1027 5101 1 562322.704798348.40 0.00 +S 1027 5103 1 562363.704798377.10 0.00 +S 1027 5105 1 562404.704798405.80 0.00 +S 1027 5107 1 562445.604798434.40 0.00 +S 1027 5109 1 562486.604798463.10 0.00 +S 1027 5111 1 562527.504798491.80 0.00 +S 1027 5113 1 562568.504798520.50 0.00 +S 1027 5115 1 562609.504798549.20 0.00 +S 1027 5117 1 562650.404798577.80 0.00 +S 1027 5119 1 562691.404798606.50 0.00 +S 1027 5121 1 562732.304798635.20 0.00 +S 1027 5123 1 562773.304798663.90 0.00 +S 1027 5125 1 562814.204798692.50 0.00 +S 1027 5127 1 562855.204798721.20 0.00 +S 1027 5129 1 562896.204798749.90 0.00 +S 1027 5131 1 562937.104798778.60 0.00 +S 1027 5133 1 562978.104798807.30 0.00 +S 1027 5135 1 563019.004798835.90 0.00 +S 1029 4961 1 559484.404796299.90 0.00 +S 1029 4963 1 559525.404796328.60 0.00 +S 1029 4965 1 559566.304796357.30 0.00 +S 1029 4967 1 559607.304796386.00 0.00 +S 1029 4969 1 559648.204796414.60 0.00 +S 1029 4971 1 559689.204796443.30 0.00 +S 1029 4973 1 559730.104796472.00 0.00 +S 1029 4975 1 559771.104796500.70 0.00 +S 1029 4977 1 559812.104796529.40 0.00 +S 1029 4979 1 559853.004796558.00 0.00 +S 1029 4981 1 559894.004796586.70 0.00 +S 1029 4983 1 559934.904796615.40 0.00 +S 1029 4985 1 559975.904796644.10 0.00 +S 1029 4987 1 560016.804796672.70 0.00 +S 1029 4989 1 560057.804796701.40 0.00 +S 1029 4991 1 560098.804796730.10 0.00 +S 1029 4993 1 560139.704796758.80 0.00 +S 1029 4995 1 560180.704796787.50 0.00 +S 1029 4997 1 560221.604796816.10 0.00 +S 1029 4999 1 560262.604796844.80 0.00 +S 1029 5001 1 560303.504796873.50 0.00 +S 1029 5003 1 560344.504796902.20 0.00 +S 1029 5005 1 560385.504796930.90 0.00 +S 1029 5007 1 560426.404796959.50 0.00 +S 1029 5009 1 560467.404796988.20 0.00 +S 1029 5011 1 560508.304797016.90 0.00 +S 1029 5013 1 560549.304797045.60 0.00 +S 1029 5015 1 560590.304797074.30 0.00 +S 1029 5017 1 560631.204797102.90 0.00 +S 1029 5019 1 560672.204797131.60 0.00 +S 1029 5021 1 560713.104797160.30 0.00 +S 1029 5023 1 560754.104797189.00 0.00 +S 1029 5025 1 560795.004797217.60 0.00 +S 1029 5027 1 560836.004797246.30 0.00 +S 1029 5029 1 560877.004797275.00 0.00 +S 1029 5031 1 560917.904797303.70 0.00 +S 1029 5033 1 560958.904797332.40 0.00 +S 1029 5035 1 560999.804797361.00 0.00 +S 1029 5037 1 561040.804797389.70 0.00 +S 1029 5039 1 561081.704797418.40 0.00 +S 1029 5041 1 561122.704797447.10 0.00 +S 1029 5043 1 561163.704797475.80 0.00 +S 1029 5045 1 561204.604797504.40 0.00 +S 1029 5047 1 561245.604797533.10 0.00 +S 1029 5049 1 561286.504797561.80 0.00 +S 1029 5051 1 561327.504797590.50 0.00 +S 1029 5053 1 561368.404797619.20 0.00 +S 1029 5055 1 561409.404797647.80 0.00 +S 1029 5057 1 561450.404797676.50 0.00 +S 1029 5059 1 561491.304797705.20 0.00 +S 1029 5061 1 561532.304797733.90 0.00 +S 1029 5063 1 561573.204797762.50 0.00 +S 1029 5065 1 561614.204797791.20 0.00 +S 1029 5067 1 561655.104797819.90 0.00 +S 1029 5069 1 561696.104797848.60 0.00 +S 1029 5071 1 561737.104797877.30 0.00 +S 1029 5073 1 561778.004797905.90 0.00 +S 1029 5075 1 561819.004797934.60 0.00 +S 1029 5077 1 561859.904797963.30 0.00 +S 1029 5079 1 561900.904797992.00 0.00 +S 1029 5081 1 561941.904798020.70 0.00 +S 1029 5083 1 561982.804798049.30 0.00 +S 1029 5085 1 562023.804798078.00 0.00 +S 1029 5087 1 562064.704798106.70 0.00 +S 1029 5089 1 562105.704798135.40 0.00 +S 1029 5091 1 562146.604798164.00 0.00 +S 1029 5093 1 562187.604798192.70 0.00 +S 1029 5095 1 562228.604798221.40 0.00 +S 1029 5097 1 562269.504798250.10 0.00 +S 1029 5099 1 562310.504798278.80 0.00 +S 1029 5101 1 562351.404798307.40 0.00 +S 1029 5103 1 562392.404798336.10 0.00 +S 1029 5105 1 562433.304798364.80 0.00 +S 1029 5107 1 562474.304798393.50 0.00 +S 1029 5109 1 562515.304798422.20 0.00 +S 1029 5111 1 562556.204798450.80 0.00 +S 1029 5113 1 562597.204798479.50 0.00 +S 1029 5115 1 562638.104798508.20 0.00 +S 1029 5117 1 562679.104798536.90 0.00 +S 1029 5119 1 562720.004798565.60 0.00 +S 1029 5121 1 562761.004798594.20 0.00 +S 1029 5123 1 562802.004798622.90 0.00 +S 1029 5125 1 562842.904798651.60 0.00 +S 1029 5127 1 562883.904798680.30 0.00 +S 1029 5129 1 562924.804798708.90 0.00 +S 1029 5131 1 562965.804798737.60 0.00 +S 1029 5133 1 563006.704798766.30 0.00 +S 1029 5135 1 563047.704798795.00 0.00 +S 1031 4961 1 559513.104796259.00 0.00 +S 1031 4963 1 559554.004796287.60 0.00 +S 1031 4965 1 559595.004796316.30 0.00 +S 1031 4967 1 559635.904796345.00 0.00 +S 1031 4969 1 559676.904796373.70 0.00 +S 1031 4971 1 559717.904796402.40 0.00 +S 1031 4973 1 559758.804796431.00 0.00 +S 1031 4975 1 559799.804796459.70 0.00 +S 1031 4977 1 559840.704796488.40 0.00 +S 1031 4979 1 559881.704796517.10 0.00 +S 1031 4981 1 559922.704796545.80 0.00 +S 1031 4983 1 559963.604796574.40 0.00 +S 1031 4985 1 560004.604796603.10 0.00 +S 1031 4987 1 560045.504796631.80 0.00 +S 1031 4989 1 560086.504796660.50 0.00 +S 1031 4991 1 560127.404796689.10 0.00 +S 1031 4993 1 560168.404796717.80 0.00 +S 1031 4995 1 560209.404796746.50 0.00 +S 1031 4997 1 560250.304796775.20 0.00 +S 1031 4999 1 560291.304796803.90 0.00 +S 1031 5001 1 560332.204796832.50 0.00 +S 1031 5003 1 560373.204796861.20 0.00 +S 1031 5005 1 560414.104796889.90 0.00 +S 1031 5007 1 560455.104796918.60 0.00 +S 1031 5009 1 560496.104796947.30 0.00 +S 1031 5011 1 560537.004796975.90 0.00 +S 1031 5013 1 560578.004797004.60 0.00 +S 1031 5015 1 560618.904797033.30 0.00 +S 1031 5017 1 560659.904797062.00 0.00 +S 1031 5019 1 560700.804797090.70 0.00 +S 1031 5021 1 560741.804797119.30 0.00 +S 1031 5023 1 560782.804797148.00 0.00 +S 1031 5025 1 560823.704797176.70 0.00 +S 1031 5027 1 560864.704797205.40 0.00 +S 1031 5029 1 560905.604797234.00 0.00 +S 1031 5031 1 560946.604797262.70 0.00 +S 1031 5033 1 560987.504797291.40 0.00 +S 1031 5035 1 561028.504797320.10 0.00 +S 1031 5037 1 561069.504797348.80 0.00 +S 1031 5039 1 561110.404797377.40 0.00 +S 1031 5041 1 561151.404797406.10 0.00 +S 1031 5043 1 561192.304797434.80 0.00 +S 1031 5045 1 561233.304797463.50 0.00 +S 1031 5047 1 561274.304797492.20 0.00 +S 1031 5049 1 561315.204797520.80 0.00 +S 1031 5051 1 561356.204797549.50 0.00 +S 1031 5053 1 561397.104797578.20 0.00 +S 1031 5055 1 561438.104797606.90 0.00 +S 1031 5057 1 561479.004797635.60 0.00 +S 1031 5059 1 561520.004797664.20 0.00 +S 1031 5061 1 561561.004797692.90 0.00 +S 1031 5063 1 561601.904797721.60 0.00 +S 1031 5065 1 561642.904797750.30 0.00 +S 1031 5067 1 561683.804797778.90 0.00 +S 1031 5069 1 561724.804797807.60 0.00 +S 1031 5071 1 561765.704797836.30 0.00 +S 1031 5073 1 561806.704797865.00 0.00 +S 1031 5075 1 561847.704797893.70 0.00 +S 1031 5077 1 561888.604797922.30 0.00 +S 1031 5079 1 561929.604797951.00 0.00 +S 1031 5081 1 561970.504797979.70 0.00 +S 1031 5083 1 562011.504798008.40 0.00 +S 1031 5085 1 562052.404798037.10 0.00 +S 1031 5087 1 562093.404798065.70 0.00 +S 1031 5089 1 562134.404798094.40 0.00 +S 1031 5091 1 562175.304798123.10 0.00 +S 1031 5093 1 562216.304798151.80 0.00 +S 1031 5095 1 562257.204798180.40 0.00 +S 1031 5097 1 562298.204798209.10 0.00 +S 1031 5099 1 562339.104798237.80 0.00 +S 1031 5101 1 562380.104798266.50 0.00 +S 1031 5103 1 562421.104798295.20 0.00 +S 1031 5105 1 562462.004798323.80 0.00 +S 1031 5107 1 562503.004798352.50 0.00 +S 1031 5109 1 562543.904798381.20 0.00 +S 1031 5111 1 562584.904798409.90 0.00 +S 1031 5113 1 562625.904798438.60 0.00 +S 1031 5115 1 562666.804798467.20 0.00 +S 1031 5117 1 562707.804798495.90 0.00 +S 1031 5119 1 562748.704798524.60 0.00 +S 1031 5121 1 562789.704798553.30 0.00 +S 1031 5123 1 562830.604798582.00 0.00 +S 1031 5125 1 562871.604798610.60 0.00 +S 1031 5127 1 562912.604798639.30 0.00 +S 1031 5129 1 562953.504798668.00 0.00 +S 1031 5131 1 562994.504798696.70 0.00 +S 1031 5133 1 563035.404798725.30 0.00 +S 1031 5135 1 563076.404798754.00 0.00 +S 1033 4961 1 559541.804796218.00 0.00 +S 1033 4963 1 559582.704796246.70 0.00 +S 1033 4965 1 559623.704796275.40 0.00 +S 1033 4967 1 559664.604796304.00 0.00 +S 1033 4969 1 559705.604796332.70 0.00 +S 1033 4971 1 559746.504796361.40 0.00 +S 1033 4973 1 559787.504796390.10 0.00 +S 1033 4975 1 559828.504796418.80 0.00 +S 1033 4977 1 559869.404796447.40 0.00 +S 1033 4979 1 559910.404796476.10 0.00 +S 1033 4981 1 559951.304796504.80 0.00 +S 1033 4983 1 559992.304796533.50 0.00 +S 1033 4985 1 560033.204796562.20 0.00 +S 1033 4987 1 560074.204796590.80 0.00 +S 1033 4989 1 560115.204796619.50 0.00 +S 1033 4991 1 560156.104796648.20 0.00 +S 1033 4993 1 560197.104796676.90 0.00 +S 1033 4995 1 560238.004796705.50 0.00 +S 1033 4997 1 560279.004796734.20 0.00 +S 1033 4999 1 560319.904796762.90 0.00 +S 1033 5001 1 560360.904796791.60 0.00 +S 1033 5003 1 560401.904796820.30 0.00 +S 1033 5005 1 560442.804796848.90 0.00 +S 1033 5007 1 560483.804796877.60 0.00 +S 1033 5009 1 560524.704796906.30 0.00 +S 1033 5011 1 560565.704796935.00 0.00 +S 1033 5013 1 560606.704796963.70 0.00 +S 1033 5015 1 560647.604796992.30 0.00 +S 1033 5017 1 560688.604797021.00 0.00 +S 1033 5019 1 560729.504797049.70 0.00 +S 1033 5021 1 560770.504797078.40 0.00 +S 1033 5023 1 560811.404797107.10 0.00 +S 1033 5025 1 560852.404797135.70 0.00 +S 1033 5027 1 560893.404797164.40 0.00 +S 1033 5029 1 560934.304797193.10 0.00 +S 1033 5031 1 560975.304797221.80 0.00 +S 1033 5033 1 561016.204797250.40 0.00 +S 1033 5035 1 561057.204797279.10 0.00 +S 1033 5037 1 561098.104797307.80 0.00 +S 1033 5039 1 561139.104797336.50 0.00 +S 1033 5041 1 561180.104797365.20 0.00 +S 1033 5043 1 561221.004797393.80 0.00 +S 1033 5045 1 561262.004797422.50 0.00 +S 1033 5047 1 561302.904797451.20 0.00 +S 1033 5049 1 561343.904797479.90 0.00 +S 1033 5051 1 561384.804797508.60 0.00 +S 1033 5053 1 561425.804797537.20 0.00 +S 1033 5055 1 561466.804797565.90 0.00 +S 1033 5057 1 561507.704797594.60 0.00 +S 1033 5059 1 561548.704797623.30 0.00 +S 1033 5061 1 561589.604797652.00 0.00 +S 1033 5063 1 561630.604797680.60 0.00 +S 1033 5065 1 561671.504797709.30 0.00 +S 1033 5067 1 561712.504797738.00 0.00 +S 1033 5069 1 561753.504797766.70 0.00 +S 1033 5071 1 561794.404797795.30 0.00 +S 1033 5073 1 561835.404797824.00 0.00 +S 1033 5075 1 561876.304797852.70 0.00 +S 1033 5077 1 561917.304797881.40 0.00 +S 1033 5079 1 561958.304797910.10 0.00 +S 1033 5081 1 561999.204797938.70 0.00 +S 1033 5083 1 562040.204797967.40 0.00 +S 1033 5085 1 562081.104797996.10 0.00 +S 1033 5087 1 562122.104798024.80 0.00 +S 1033 5089 1 562163.004798053.50 0.00 +S 1033 5091 1 562204.004798082.10 0.00 +S 1033 5093 1 562245.004798110.80 0.00 +S 1033 5095 1 562285.904798139.50 0.00 +S 1033 5097 1 562326.904798168.20 0.00 +S 1033 5099 1 562367.804798196.80 0.00 +S 1033 5101 1 562408.804798225.50 0.00 +S 1033 5103 1 562449.704798254.20 0.00 +S 1033 5105 1 562490.704798282.90 0.00 +S 1033 5107 1 562531.704798311.60 0.00 +S 1033 5109 1 562572.604798340.20 0.00 +S 1033 5111 1 562613.604798368.90 0.00 +S 1033 5113 1 562654.504798397.60 0.00 +S 1033 5115 1 562695.504798426.30 0.00 +S 1033 5117 1 562736.404798455.00 0.00 +S 1033 5119 1 562777.404798483.60 0.00 +S 1033 5121 1 562818.404798512.30 0.00 +S 1033 5123 1 562859.304798541.00 0.00 +S 1033 5125 1 562900.304798569.70 0.00 +S 1033 5127 1 562941.204798598.40 0.00 +S 1033 5129 1 562982.204798627.00 0.00 +S 1033 5131 1 563023.104798655.70 0.00 +S 1033 5133 1 563064.104798684.40 0.00 +S 1033 5135 1 563105.104798713.10 0.00 +S 1035 4961 1 559570.404796177.10 0.00 +S 1035 4963 1 559611.404796205.70 0.00 +S 1035 4965 1 559652.304796234.40 0.00 +S 1035 4967 1 559693.304796263.10 0.00 +S 1035 4969 1 559734.304796291.80 0.00 +S 1035 4971 1 559775.204796320.40 0.00 +S 1035 4973 1 559816.204796349.10 0.00 +S 1035 4975 1 559857.104796377.80 0.00 +S 1035 4977 1 559898.104796406.50 0.00 +S 1035 4979 1 559939.104796435.20 0.00 +S 1035 4981 1 559980.004796463.80 0.00 +S 1035 4983 1 560021.004796492.50 0.00 +S 1035 4985 1 560061.904796521.20 0.00 +S 1035 4987 1 560102.904796549.90 0.00 +S 1035 4989 1 560143.804796578.60 0.00 +S 1035 4991 1 560184.804796607.20 0.00 +S 1035 4993 1 560225.804796635.90 0.00 +S 1035 4995 1 560266.704796664.60 0.00 +S 1035 4997 1 560307.704796693.30 0.00 +S 1035 4999 1 560348.604796722.00 0.00 +S 1035 5001 1 560389.604796750.60 0.00 +S 1035 5003 1 560430.504796779.30 0.00 +S 1035 5005 1 560471.504796808.00 0.00 +S 1035 5007 1 560512.504796836.70 0.00 +S 1035 5009 1 560553.404796865.30 0.00 +S 1035 5011 1 560594.404796894.00 0.00 +S 1035 5013 1 560635.304796922.70 0.00 +S 1035 5015 1 560676.304796951.40 0.00 +S 1035 5017 1 560717.204796980.10 0.00 +S 1035 5019 1 560758.204797008.70 0.00 +S 1035 5021 1 560799.204797037.40 0.00 +S 1035 5023 1 560840.104797066.10 0.00 +S 1035 5025 1 560881.104797094.80 0.00 +S 1035 5027 1 560922.004797123.50 0.00 +S 1035 5029 1 560963.004797152.10 0.00 +S 1035 5031 1 561003.904797180.80 0.00 +S 1035 5033 1 561044.904797209.50 0.00 +S 1035 5035 1 561085.904797238.20 0.00 +S 1035 5037 1 561126.804797266.80 0.00 +S 1035 5039 1 561167.804797295.50 0.00 +S 1035 5041 1 561208.704797324.20 0.00 +S 1035 5043 1 561249.704797352.90 0.00 +S 1035 5045 1 561290.704797381.60 0.00 +S 1035 5047 1 561331.604797410.20 0.00 +S 1035 5049 1 561372.604797438.90 0.00 +S 1035 5051 1 561413.504797467.60 0.00 +S 1035 5053 1 561454.504797496.30 0.00 +S 1035 5055 1 561495.404797525.00 0.00 +S 1035 5057 1 561536.404797553.60 0.00 +S 1035 5059 1 561577.404797582.30 0.00 +S 1035 5061 1 561618.304797611.00 0.00 +S 1035 5063 1 561659.304797639.70 0.00 +S 1035 5065 1 561700.204797668.40 0.00 +S 1035 5067 1 561741.204797697.00 0.00 +S 1035 5069 1 561782.104797725.70 0.00 +S 1035 5071 1 561823.104797754.40 0.00 +S 1035 5073 1 561864.104797783.10 0.00 +S 1035 5075 1 561905.004797811.70 0.00 +S 1035 5077 1 561946.004797840.40 0.00 +S 1035 5079 1 561986.904797869.10 0.00 +S 1035 5081 1 562027.904797897.80 0.00 +S 1035 5083 1 562068.804797926.50 0.00 +S 1035 5085 1 562109.804797955.10 0.00 +S 1035 5087 1 562150.804797983.80 0.00 +S 1035 5089 1 562191.704798012.50 0.00 +S 1035 5091 1 562232.704798041.20 0.00 +S 1035 5093 1 562273.604798069.90 0.00 +S 1035 5095 1 562314.604798098.50 0.00 +S 1035 5097 1 562355.504798127.20 0.00 +S 1035 5099 1 562396.504798155.90 0.00 +S 1035 5101 1 562437.504798184.60 0.00 +S 1035 5103 1 562478.404798213.20 0.00 +S 1035 5105 1 562519.404798241.90 0.00 +S 1035 5107 1 562560.304798270.60 0.00 +S 1035 5109 1 562601.304798299.30 0.00 +S 1035 5111 1 562642.304798328.00 0.00 +S 1035 5113 1 562683.204798356.60 0.00 +S 1035 5115 1 562724.204798385.30 0.00 +S 1035 5117 1 562765.104798414.00 0.00 +S 1035 5119 1 562806.104798442.70 0.00 +S 1035 5121 1 562847.004798471.40 0.00 +S 1035 5123 1 562888.004798500.00 0.00 +S 1035 5125 1 562929.004798528.70 0.00 +S 1035 5127 1 562969.904798557.40 0.00 +S 1035 5129 1 563010.904798586.10 0.00 +S 1035 5131 1 563051.804798614.80 0.00 +S 1035 5133 1 563092.804798643.40 0.00 +S 1035 5135 1 563133.704798672.10 0.00 +S 1037 4961 1 559599.104796136.10 0.00 +S 1037 4963 1 559640.104796164.80 0.00 +S 1037 4965 1 559681.004796193.50 0.00 +S 1037 4967 1 559722.004796222.10 0.00 +S 1037 4969 1 559762.904796250.80 0.00 +S 1037 4971 1 559803.904796279.50 0.00 +S 1037 4973 1 559844.904796308.20 0.00 +S 1037 4975 1 559885.804796336.80 0.00 +S 1037 4977 1 559926.804796365.50 0.00 +S 1037 4979 1 559967.704796394.20 0.00 +S 1037 4981 1 560008.704796422.90 0.00 +S 1037 4983 1 560049.604796451.60 0.00 +S 1037 4985 1 560090.604796480.20 0.00 +S 1037 4987 1 560131.604796508.90 0.00 +S 1037 4989 1 560172.504796537.60 0.00 +S 1037 4991 1 560213.504796566.30 0.00 +S 1037 4993 1 560254.404796595.00 0.00 +S 1037 4995 1 560295.404796623.60 0.00 +S 1037 4997 1 560336.304796652.30 0.00 +S 1037 4999 1 560377.304796681.00 0.00 +S 1037 5001 1 560418.304796709.70 0.00 +S 1037 5003 1 560459.204796738.40 0.00 +S 1037 5005 1 560500.204796767.00 0.00 +S 1037 5007 1 560541.104796795.70 0.00 +S 1037 5009 1 560582.104796824.40 0.00 +S 1037 5011 1 560623.104796853.10 0.00 +S 1037 5013 1 560664.004796881.70 0.00 +S 1037 5015 1 560705.004796910.40 0.00 +S 1037 5017 1 560745.904796939.10 0.00 +S 1037 5019 1 560786.904796967.80 0.00 +S 1037 5021 1 560827.804796996.50 0.00 +S 1037 5023 1 560868.804797025.10 0.00 +S 1037 5025 1 560909.804797053.80 0.00 +S 1037 5027 1 560950.704797082.50 0.00 +S 1037 5029 1 560991.704797111.20 0.00 +S 1037 5031 1 561032.604797139.90 0.00 +S 1037 5033 1 561073.604797168.50 0.00 +S 1037 5035 1 561114.504797197.20 0.00 +S 1037 5037 1 561155.504797225.90 0.00 +S 1037 5039 1 561196.504797254.60 0.00 +S 1037 5041 1 561237.404797283.20 0.00 +S 1037 5043 1 561278.404797311.90 0.00 +S 1037 5045 1 561319.304797340.60 0.00 +S 1037 5047 1 561360.304797369.30 0.00 +S 1037 5049 1 561401.204797398.00 0.00 +S 1037 5051 1 561442.204797426.60 0.00 +S 1037 5053 1 561483.204797455.30 0.00 +S 1037 5055 1 561524.104797484.00 0.00 +S 1037 5057 1 561565.104797512.70 0.00 +S 1037 5059 1 561606.004797541.40 0.00 +S 1037 5061 1 561647.004797570.00 0.00 +S 1037 5063 1 561687.904797598.70 0.00 +S 1037 5065 1 561728.904797627.40 0.00 +S 1037 5067 1 561769.904797656.10 0.00 +S 1037 5069 1 561810.804797684.80 0.00 +S 1037 5071 1 561851.804797713.40 0.00 +S 1037 5073 1 561892.704797742.10 0.00 +S 1037 5075 1 561933.704797770.80 0.00 +S 1037 5077 1 561974.704797799.50 0.00 +S 1037 5079 1 562015.604797828.10 0.00 +S 1037 5081 1 562056.604797856.80 0.00 +S 1037 5083 1 562097.504797885.50 0.00 +S 1037 5085 1 562138.504797914.20 0.00 +S 1037 5087 1 562179.404797942.90 0.00 +S 1037 5089 1 562220.404797971.50 0.00 +S 1037 5091 1 562261.404798000.20 0.00 +S 1037 5093 1 562302.304798028.90 0.00 +S 1037 5095 1 562343.304798057.60 0.00 +S 1037 5097 1 562384.204798086.30 0.00 +S 1037 5099 1 562425.204798114.90 0.00 +S 1037 5101 1 562466.104798143.60 0.00 +S 1037 5103 1 562507.104798172.30 0.00 +S 1037 5105 1 562548.104798201.00 0.00 +S 1037 5107 1 562589.004798229.60 0.00 +S 1037 5109 1 562630.004798258.30 0.00 +S 1037 5111 1 562670.904798287.00 0.00 +S 1037 5113 1 562711.904798315.70 0.00 +S 1037 5115 1 562752.804798344.40 0.00 +S 1037 5117 1 562793.804798373.00 0.00 +S 1037 5119 1 562834.804798401.70 0.00 +S 1037 5121 1 562875.704798430.40 0.00 +S 1037 5123 1 562916.704798459.10 0.00 +S 1037 5125 1 562957.604798487.80 0.00 +S 1037 5127 1 562998.604798516.40 0.00 +S 1037 5129 1 563039.504798545.10 0.00 +S 1037 5131 1 563080.504798573.80 0.00 +S 1037 5133 1 563121.504798602.50 0.00 +S 1037 5135 1 563162.404798631.20 0.00 +S 1039 4961 1 559627.804796095.10 0.00 +S 1039 4963 1 559668.704796123.80 0.00 +S 1039 4965 1 559709.704796152.50 0.00 +S 1039 4967 1 559750.704796181.20 0.00 +S 1039 4969 1 559791.604796209.90 0.00 +S 1039 4971 1 559832.604796238.50 0.00 +S 1039 4973 1 559873.504796267.20 0.00 +S 1039 4975 1 559914.504796295.90 0.00 +S 1039 4977 1 559955.504796324.60 0.00 +S 1039 4979 1 559996.404796353.20 0.00 +S 1039 4981 1 560037.404796381.90 0.00 +S 1039 4983 1 560078.304796410.60 0.00 +S 1039 4985 1 560119.304796439.30 0.00 +S 1039 4987 1 560160.204796468.00 0.00 +S 1039 4989 1 560201.204796496.60 0.00 +S 1039 4991 1 560242.204796525.30 0.00 +S 1039 4993 1 560283.104796554.00 0.00 +S 1039 4995 1 560324.104796582.70 0.00 +S 1039 4997 1 560365.004796611.40 0.00 +S 1039 4999 1 560406.004796640.00 0.00 +S 1039 5001 1 560446.904796668.70 0.00 +S 1039 5003 1 560487.904796697.40 0.00 +S 1039 5005 1 560528.904796726.10 0.00 +S 1039 5007 1 560569.804796754.80 0.00 +S 1039 5009 1 560610.804796783.40 0.00 +S 1039 5011 1 560651.704796812.10 0.00 +S 1039 5013 1 560692.704796840.80 0.00 +S 1039 5015 1 560733.604796869.50 0.00 +S 1039 5017 1 560774.604796898.10 0.00 +S 1039 5019 1 560815.604796926.80 0.00 +S 1039 5021 1 560856.504796955.50 0.00 +S 1039 5023 1 560897.504796984.20 0.00 +S 1039 5025 1 560938.404797012.90 0.00 +S 1039 5027 1 560979.404797041.50 0.00 +S 1039 5029 1 561020.304797070.20 0.00 +S 1039 5031 1 561061.304797098.90 0.00 +S 1039 5033 1 561102.304797127.60 0.00 +S 1039 5035 1 561143.204797156.30 0.00 +S 1039 5037 1 561184.204797184.90 0.00 +S 1039 5039 1 561225.104797213.60 0.00 +S 1039 5041 1 561266.104797242.30 0.00 +S 1039 5043 1 561307.104797271.00 0.00 +S 1039 5045 1 561348.004797299.60 0.00 +S 1039 5047 1 561389.004797328.30 0.00 +S 1039 5049 1 561429.904797357.00 0.00 +S 1039 5051 1 561470.904797385.70 0.00 +S 1039 5053 1 561511.804797414.40 0.00 +S 1039 5055 1 561552.804797443.00 0.00 +S 1039 5057 1 561593.804797471.70 0.00 +S 1039 5059 1 561634.704797500.40 0.00 +S 1039 5061 1 561675.704797529.10 0.00 +S 1039 5063 1 561716.604797557.80 0.00 +S 1039 5065 1 561757.604797586.40 0.00 +S 1039 5067 1 561798.504797615.10 0.00 +S 1039 5069 1 561839.504797643.80 0.00 +S 1039 5071 1 561880.504797672.50 0.00 +S 1039 5073 1 561921.404797701.20 0.00 +S 1039 5075 1 561962.404797729.80 0.00 +S 1039 5077 1 562003.304797758.50 0.00 +S 1039 5079 1 562044.304797787.20 0.00 +S 1039 5081 1 562085.204797815.90 0.00 +S 1039 5083 1 562126.204797844.50 0.00 +S 1039 5085 1 562167.204797873.20 0.00 +S 1039 5087 1 562208.104797901.90 0.00 +S 1039 5089 1 562249.104797930.60 0.00 +S 1039 5091 1 562290.004797959.30 0.00 +S 1039 5093 1 562331.004797987.90 0.00 +S 1039 5095 1 562371.904798016.60 0.00 +S 1039 5097 1 562412.904798045.30 0.00 +S 1039 5099 1 562453.904798074.00 0.00 +S 1039 5101 1 562494.804798102.70 0.00 +S 1039 5103 1 562535.804798131.30 0.00 +S 1039 5105 1 562576.704798160.00 0.00 +S 1039 5107 1 562617.704798188.70 0.00 +S 1039 5109 1 562658.704798217.40 0.00 +S 1039 5111 1 562699.604798246.00 0.00 +S 1039 5113 1 562740.604798274.70 0.00 +S 1039 5115 1 562781.504798303.40 0.00 +S 1039 5117 1 562822.504798332.10 0.00 +S 1039 5119 1 562863.404798360.80 0.00 +S 1039 5121 1 562904.404798389.40 0.00 +S 1039 5123 1 562945.404798418.10 0.00 +S 1039 5125 1 562986.304798446.80 0.00 +S 1039 5127 1 563027.304798475.50 0.00 +S 1039 5129 1 563068.204798504.20 0.00 +S 1039 5131 1 563109.204798532.80 0.00 +S 1039 5133 1 563150.104798561.50 0.00 +S 1039 5135 1 563191.104798590.20 0.00 +S 1041 4961 1 559656.504796054.20 0.00 +S 1041 4963 1 559697.404796082.90 0.00 +S 1041 4965 1 559738.404796111.50 0.00 +S 1041 4967 1 559779.304796140.20 0.00 +S 1041 4969 1 559820.304796168.90 0.00 +S 1041 4971 1 559861.304796197.60 0.00 +S 1041 4973 1 559902.204796226.30 0.00 +S 1041 4975 1 559943.204796254.90 0.00 +S 1041 4977 1 559984.104796283.60 0.00 +S 1041 4979 1 560025.104796312.30 0.00 +S 1041 4981 1 560066.004796341.00 0.00 +S 1041 4983 1 560107.004796369.60 0.00 +S 1041 4985 1 560148.004796398.30 0.00 +S 1041 4987 1 560188.904796427.00 0.00 +S 1041 4989 1 560229.904796455.70 0.00 +S 1041 4991 1 560270.804796484.40 0.00 +S 1041 4993 1 560311.804796513.00 0.00 +S 1041 4995 1 560352.704796541.70 0.00 +S 1041 4997 1 560393.704796570.40 0.00 +S 1041 4999 1 560434.704796599.10 0.00 +S 1041 5001 1 560475.604796627.80 0.00 +S 1041 5003 1 560516.604796656.40 0.00 +S 1041 5005 1 560557.504796685.10 0.00 +S 1041 5007 1 560598.504796713.80 0.00 +S 1041 5009 1 560639.504796742.50 0.00 +S 1041 5011 1 560680.404796771.20 0.00 +S 1041 5013 1 560721.404796799.80 0.00 +S 1041 5015 1 560762.304796828.50 0.00 +S 1041 5017 1 560803.304796857.20 0.00 +S 1041 5019 1 560844.204796885.90 0.00 +S 1041 5021 1 560885.204796914.50 0.00 +S 1041 5023 1 560926.204796943.20 0.00 +S 1041 5025 1 560967.104796971.90 0.00 +S 1041 5027 1 561008.104797000.60 0.00 +S 1041 5029 1 561049.004797029.30 0.00 +S 1041 5031 1 561090.004797057.90 0.00 +S 1041 5033 1 561130.904797086.60 0.00 +S 1041 5035 1 561171.904797115.30 0.00 +S 1041 5037 1 561212.904797144.00 0.00 +S 1041 5039 1 561253.804797172.70 0.00 +S 1041 5041 1 561294.804797201.30 0.00 +S 1041 5043 1 561335.704797230.00 0.00 +S 1041 5045 1 561376.704797258.70 0.00 +S 1041 5047 1 561417.604797287.40 0.00 +S 1041 5049 1 561458.604797316.00 0.00 +S 1041 5051 1 561499.604797344.70 0.00 +S 1041 5053 1 561540.504797373.40 0.00 +S 1041 5055 1 561581.504797402.10 0.00 +S 1041 5057 1 561622.404797430.80 0.00 +S 1041 5059 1 561663.404797459.40 0.00 +S 1041 5061 1 561704.304797488.10 0.00 +S 1041 5063 1 561745.304797516.80 0.00 +S 1041 5065 1 561786.304797545.50 0.00 +S 1041 5067 1 561827.204797574.20 0.00 +S 1041 5069 1 561868.204797602.80 0.00 +S 1041 5071 1 561909.104797631.50 0.00 +S 1041 5073 1 561950.104797660.20 0.00 +S 1041 5075 1 561991.104797688.90 0.00 +S 1041 5077 1 562032.004797717.60 0.00 +S 1041 5079 1 562073.004797746.20 0.00 +S 1041 5081 1 562113.904797774.90 0.00 +S 1041 5083 1 562154.904797803.60 0.00 +S 1041 5085 1 562195.804797832.30 0.00 +S 1041 5087 1 562236.804797860.90 0.00 +S 1041 5089 1 562277.804797889.60 0.00 +S 1041 5091 1 562318.704797918.30 0.00 +S 1041 5093 1 562359.704797947.00 0.00 +S 1041 5095 1 562400.604797975.70 0.00 +S 1041 5097 1 562441.604798004.30 0.00 +S 1041 5099 1 562482.504798033.00 0.00 +S 1041 5101 1 562523.504798061.70 0.00 +S 1041 5103 1 562564.504798090.40 0.00 +S 1041 5105 1 562605.404798119.10 0.00 +S 1041 5107 1 562646.404798147.70 0.00 +S 1041 5109 1 562687.304798176.40 0.00 +S 1041 5111 1 562728.304798205.10 0.00 +S 1041 5113 1 562769.204798233.80 0.00 +S 1041 5115 1 562810.204798262.40 0.00 +S 1041 5117 1 562851.204798291.10 0.00 +S 1041 5119 1 562892.104798319.80 0.00 +S 1041 5121 1 562933.104798348.50 0.00 +S 1041 5123 1 562974.004798377.20 0.00 +S 1041 5125 1 563015.004798405.80 0.00 +S 1041 5127 1 563055.904798434.50 0.00 +S 1041 5129 1 563096.904798463.20 0.00 +S 1041 5131 1 563137.904798491.90 0.00 +S 1041 5133 1 563178.804798520.60 0.00 +S 1041 5135 1 563219.804798549.20 0.00 +S 1043 4961 1 559685.104796013.20 0.00 +S 1043 4963 1 559726.104796041.90 0.00 +S 1043 4965 1 559767.104796070.60 0.00 +S 1043 4967 1 559808.004796099.30 0.00 +S 1043 4969 1 559849.004796127.90 0.00 +S 1043 4971 1 559889.904796156.60 0.00 +S 1043 4973 1 559930.904796185.30 0.00 +S 1043 4975 1 559971.904796214.00 0.00 +S 1043 4977 1 560012.804796242.70 0.00 +S 1043 4979 1 560053.804796271.30 0.00 +S 1043 4981 1 560094.704796300.00 0.00 +S 1043 4983 1 560135.704796328.70 0.00 +S 1043 4985 1 560176.604796357.40 0.00 +S 1043 4987 1 560217.604796386.00 0.00 +S 1043 4989 1 560258.604796414.70 0.00 +S 1043 4991 1 560299.504796443.40 0.00 +S 1043 4993 1 560340.504796472.10 0.00 +S 1043 4995 1 560381.404796500.80 0.00 +S 1043 4997 1 560422.404796529.40 0.00 +S 1043 4999 1 560463.304796558.10 0.00 +S 1043 5001 1 560504.304796586.80 0.00 +S 1043 5003 1 560545.304796615.50 0.00 +S 1043 5005 1 560586.204796644.20 0.00 +S 1043 5007 1 560627.204796672.80 0.00 +S 1043 5009 1 560668.104796701.50 0.00 +S 1043 5011 1 560709.104796730.20 0.00 +S 1043 5013 1 560750.004796758.90 0.00 +S 1043 5015 1 560791.004796787.60 0.00 +S 1043 5017 1 560832.004796816.20 0.00 +S 1043 5019 1 560872.904796844.90 0.00 +S 1043 5021 1 560913.904796873.60 0.00 +S 1043 5023 1 560954.804796902.30 0.00 +S 1043 5025 1 560995.804796930.90 0.00 +S 1043 5027 1 561036.704796959.60 0.00 +S 1043 5029 1 561077.704796988.30 0.00 +S 1043 5031 1 561118.704797017.00 0.00 +S 1043 5033 1 561159.604797045.70 0.00 +S 1043 5035 1 561200.604797074.30 0.00 +S 1043 5037 1 561241.504797103.00 0.00 +S 1043 5039 1 561282.504797131.70 0.00 +S 1043 5041 1 561323.504797160.40 0.00 +S 1043 5043 1 561364.404797189.10 0.00 +S 1043 5045 1 561405.404797217.70 0.00 +S 1043 5047 1 561446.304797246.40 0.00 +S 1043 5049 1 561487.304797275.10 0.00 +S 1043 5051 1 561528.204797303.80 0.00 +S 1043 5053 1 561569.204797332.40 0.00 +S 1043 5055 1 561610.204797361.10 0.00 +S 1043 5057 1 561651.104797389.80 0.00 +S 1043 5059 1 561692.104797418.50 0.00 +S 1043 5061 1 561733.004797447.20 0.00 +S 1043 5063 1 561774.004797475.80 0.00 +S 1043 5065 1 561814.904797504.50 0.00 +S 1043 5067 1 561855.904797533.20 0.00 +S 1043 5069 1 561896.904797561.90 0.00 +S 1043 5071 1 561937.804797590.60 0.00 +S 1043 5073 1 561978.804797619.20 0.00 +S 1043 5075 1 562019.704797647.90 0.00 +S 1043 5077 1 562060.704797676.60 0.00 +S 1043 5079 1 562101.604797705.30 0.00 +S 1043 5081 1 562142.604797734.00 0.00 +S 1043 5083 1 562183.604797762.60 0.00 +S 1043 5085 1 562224.504797791.30 0.00 +S 1043 5087 1 562265.504797820.00 0.00 +S 1043 5089 1 562306.404797848.70 0.00 +S 1043 5091 1 562347.404797877.30 0.00 +S 1043 5093 1 562388.304797906.00 0.00 +S 1043 5095 1 562429.304797934.70 0.00 +S 1043 5097 1 562470.304797963.40 0.00 +S 1043 5099 1 562511.204797992.10 0.00 +S 1043 5101 1 562552.204798020.70 0.00 +S 1043 5103 1 562593.104798049.40 0.00 +S 1043 5105 1 562634.104798078.10 0.00 +S 1043 5107 1 562675.104798106.80 0.00 +S 1043 5109 1 562716.004798135.50 0.00 +S 1043 5111 1 562757.004798164.10 0.00 +S 1043 5113 1 562797.904798192.80 0.00 +S 1043 5115 1 562838.904798221.50 0.00 +S 1043 5117 1 562879.804798250.20 0.00 +S 1043 5119 1 562920.804798278.80 0.00 +S 1043 5121 1 562961.804798307.50 0.00 +S 1043 5123 1 563002.704798336.20 0.00 +S 1043 5125 1 563043.704798364.90 0.00 +S 1043 5127 1 563084.604798393.60 0.00 +S 1043 5129 1 563125.604798422.20 0.00 +S 1043 5131 1 563166.504798450.90 0.00 +S 1043 5133 1 563207.504798479.60 0.00 +S 1043 5135 1 563248.504798508.30 0.00 +S 1045 4961 1 559713.804795972.30 0.00 +S 1045 4963 1 559754.804796000.90 0.00 +S 1045 4965 1 559795.704796029.60 0.00 +S 1045 4967 1 559836.704796058.30 0.00 +S 1045 4969 1 559877.704796087.00 0.00 +S 1045 4971 1 559918.604796115.70 0.00 +S 1045 4973 1 559959.604796144.30 0.00 +S 1045 4975 1 560000.504796173.00 0.00 +S 1045 4977 1 560041.504796201.70 0.00 +S 1045 4979 1 560082.404796230.40 0.00 +S 1045 4981 1 560123.404796259.10 0.00 +S 1045 4983 1 560164.404796287.70 0.00 +S 1045 4985 1 560205.304796316.40 0.00 +S 1045 4987 1 560246.304796345.10 0.00 +S 1045 4989 1 560287.204796373.80 0.00 +S 1045 4991 1 560328.204796402.40 0.00 +S 1045 4993 1 560369.104796431.10 0.00 +S 1045 4995 1 560410.104796459.80 0.00 +S 1045 4997 1 560451.104796488.50 0.00 +S 1045 4999 1 560492.004796517.20 0.00 +S 1045 5001 1 560533.004796545.80 0.00 +S 1045 5003 1 560573.904796574.50 0.00 +S 1045 5005 1 560614.904796603.20 0.00 +S 1045 5007 1 560655.904796631.90 0.00 +S 1045 5009 1 560696.804796660.60 0.00 +S 1045 5011 1 560737.804796689.20 0.00 +S 1045 5013 1 560778.704796717.90 0.00 +S 1045 5015 1 560819.704796746.60 0.00 +S 1045 5017 1 560860.604796775.30 0.00 +S 1045 5019 1 560901.604796804.00 0.00 +S 1045 5021 1 560942.604796832.60 0.00 +S 1045 5023 1 560983.504796861.30 0.00 +S 1045 5025 1 561024.504796890.00 0.00 +S 1045 5027 1 561065.404796918.70 0.00 +S 1045 5029 1 561106.404796947.30 0.00 +S 1045 5031 1 561147.304796976.00 0.00 +S 1045 5033 1 561188.304797004.70 0.00 +S 1045 5035 1 561229.304797033.40 0.00 +S 1045 5037 1 561270.204797062.10 0.00 +S 1045 5039 1 561311.204797090.70 0.00 +S 1045 5041 1 561352.104797119.40 0.00 +S 1045 5043 1 561393.104797148.10 0.00 +S 1045 5045 1 561434.004797176.80 0.00 +S 1045 5047 1 561475.004797205.50 0.00 +S 1045 5049 1 561516.004797234.10 0.00 +S 1045 5051 1 561556.904797262.80 0.00 +S 1045 5053 1 561597.904797291.50 0.00 +S 1045 5055 1 561638.804797320.20 0.00 +S 1045 5057 1 561679.804797348.80 0.00 +S 1045 5059 1 561720.704797377.50 0.00 +S 1045 5061 1 561761.704797406.20 0.00 +S 1045 5063 1 561802.704797434.90 0.00 +S 1045 5065 1 561843.604797463.60 0.00 +S 1045 5067 1 561884.604797492.20 0.00 +S 1045 5069 1 561925.504797520.90 0.00 +S 1045 5071 1 561966.504797549.60 0.00 +S 1045 5073 1 562007.504797578.30 0.00 +S 1045 5075 1 562048.404797607.00 0.00 +S 1045 5077 1 562089.404797635.60 0.00 +S 1045 5079 1 562130.304797664.30 0.00 +S 1045 5081 1 562171.304797693.00 0.00 +S 1045 5083 1 562212.204797721.70 0.00 +S 1045 5085 1 562253.204797750.40 0.00 +S 1045 5087 1 562294.204797779.00 0.00 +S 1045 5089 1 562335.104797807.70 0.00 +S 1045 5091 1 562376.104797836.40 0.00 +S 1045 5093 1 562417.004797865.10 0.00 +S 1045 5095 1 562458.004797893.70 0.00 +S 1045 5097 1 562498.904797922.40 0.00 +S 1045 5099 1 562539.904797951.10 0.00 +S 1045 5101 1 562580.904797979.80 0.00 +S 1045 5103 1 562621.804798008.50 0.00 +S 1045 5105 1 562662.804798037.10 0.00 +S 1045 5107 1 562703.704798065.80 0.00 +S 1045 5109 1 562744.704798094.50 0.00 +S 1045 5111 1 562785.604798123.20 0.00 +S 1045 5113 1 562826.604798151.90 0.00 +S 1045 5115 1 562867.604798180.50 0.00 +S 1045 5117 1 562908.504798209.20 0.00 +S 1045 5119 1 562949.504798237.90 0.00 +S 1045 5121 1 562990.404798266.60 0.00 +S 1045 5123 1 563031.404798295.20 0.00 +S 1045 5125 1 563072.304798323.90 0.00 +S 1045 5127 1 563113.304798352.60 0.00 +S 1045 5129 1 563154.304798381.30 0.00 +S 1045 5131 1 563195.204798410.00 0.00 +S 1045 5133 1 563236.204798438.60 0.00 +S 1045 5135 1 563277.104798467.30 0.00 +S 1047 4961 1 559742.504795931.30 0.00 +S 1047 4963 1 559783.504795960.00 0.00 +S 1047 4965 1 559824.404795988.70 0.00 +S 1047 4967 1 559865.404796017.30 0.00 +S 1047 4969 1 559906.304796046.00 0.00 +S 1047 4971 1 559947.304796074.70 0.00 +S 1047 4973 1 559988.304796103.40 0.00 +S 1047 4975 1 560029.204796132.10 0.00 +S 1047 4977 1 560070.204796160.70 0.00 +S 1047 4979 1 560111.104796189.40 0.00 +S 1047 4981 1 560152.104796218.10 0.00 +S 1047 4983 1 560193.004796246.80 0.00 +S 1047 4985 1 560234.004796275.50 0.00 +S 1047 4987 1 560275.004796304.10 0.00 +S 1047 4989 1 560315.904796332.80 0.00 +S 1047 4991 1 560356.904796361.50 0.00 +S 1047 4993 1 560397.804796390.20 0.00 +S 1047 4995 1 560438.804796418.80 0.00 +S 1047 4997 1 560479.704796447.50 0.00 +S 1047 4999 1 560520.704796476.20 0.00 +S 1047 5001 1 560561.704796504.90 0.00 +S 1047 5003 1 560602.604796533.60 0.00 +S 1047 5005 1 560643.604796562.20 0.00 +S 1047 5007 1 560684.504796590.90 0.00 +S 1047 5009 1 560725.504796619.60 0.00 +S 1047 5011 1 560766.404796648.30 0.00 +S 1047 5013 1 560807.404796677.00 0.00 +S 1047 5015 1 560848.404796705.60 0.00 +S 1047 5017 1 560889.304796734.30 0.00 +S 1047 5019 1 560930.304796763.00 0.00 +S 1047 5021 1 560971.204796791.70 0.00 +S 1047 5023 1 561012.204796820.40 0.00 +S 1047 5025 1 561053.104796849.00 0.00 +S 1047 5027 1 561094.104796877.70 0.00 +S 1047 5029 1 561135.104796906.40 0.00 +S 1047 5031 1 561176.004796935.10 0.00 +S 1047 5033 1 561217.004796963.70 0.00 +S 1047 5035 1 561257.904796992.40 0.00 +S 1047 5037 1 561298.904797021.10 0.00 +S 1047 5039 1 561339.904797049.80 0.00 +S 1047 5041 1 561380.804797078.50 0.00 +S 1047 5043 1 561421.804797107.10 0.00 +S 1047 5045 1 561462.704797135.80 0.00 +S 1047 5047 1 561503.704797164.50 0.00 +S 1047 5049 1 561544.604797193.20 0.00 +S 1047 5051 1 561585.604797221.90 0.00 +S 1047 5053 1 561626.604797250.50 0.00 +S 1047 5055 1 561667.504797279.20 0.00 +S 1047 5057 1 561708.504797307.90 0.00 +S 1047 5059 1 561749.404797336.60 0.00 +S 1047 5061 1 561790.404797365.20 0.00 +S 1047 5063 1 561831.304797393.90 0.00 +S 1047 5065 1 561872.304797422.60 0.00 +S 1047 5067 1 561913.304797451.30 0.00 +S 1047 5069 1 561954.204797480.00 0.00 +S 1047 5071 1 561995.204797508.60 0.00 +S 1047 5073 1 562036.104797537.30 0.00 +S 1047 5075 1 562077.104797566.00 0.00 +S 1047 5077 1 562118.004797594.70 0.00 +S 1047 5079 1 562159.004797623.40 0.00 +S 1047 5081 1 562200.004797652.00 0.00 +S 1047 5083 1 562240.904797680.70 0.00 +S 1047 5085 1 562281.904797709.40 0.00 +S 1047 5087 1 562322.804797738.10 0.00 +S 1047 5089 1 562363.804797766.80 0.00 +S 1047 5091 1 562404.704797795.40 0.00 +S 1047 5093 1 562445.704797824.10 0.00 +S 1047 5095 1 562486.704797852.80 0.00 +S 1047 5097 1 562527.604797881.50 0.00 +S 1047 5099 1 562568.604797910.10 0.00 +S 1047 5101 1 562609.504797938.80 0.00 +S 1047 5103 1 562650.504797967.50 0.00 +S 1047 5105 1 562691.504797996.20 0.00 +S 1047 5107 1 562732.404798024.90 0.00 +S 1047 5109 1 562773.404798053.50 0.00 +S 1047 5111 1 562814.304798082.20 0.00 +S 1047 5113 1 562855.304798110.90 0.00 +S 1047 5115 1 562896.204798139.60 0.00 +S 1047 5117 1 562937.204798168.30 0.00 +S 1047 5119 1 562978.204798196.90 0.00 +S 1047 5121 1 563019.104798225.60 0.00 +S 1047 5123 1 563060.104798254.30 0.00 +S 1047 5125 1 563101.004798283.00 0.00 +S 1047 5127 1 563142.004798311.60 0.00 +S 1047 5129 1 563182.904798340.30 0.00 +S 1047 5131 1 563223.904798369.00 0.00 +S 1047 5133 1 563264.904798397.70 0.00 +S 1047 5135 1 563305.804798426.40 0.00 +S 1049 4961 1 559771.204795890.30 0.00 +S 1049 4963 1 559812.104795919.00 0.00 +S 1049 4965 1 559853.104795947.70 0.00 +S 1049 4967 1 559894.104795976.40 0.00 +S 1049 4969 1 559935.004796005.10 0.00 +S 1049 4971 1 559976.004796033.70 0.00 +S 1049 4973 1 560016.904796062.40 0.00 +S 1049 4975 1 560057.904796091.10 0.00 +S 1049 4977 1 560098.804796119.80 0.00 +S 1049 4979 1 560139.804796148.50 0.00 +S 1049 4981 1 560180.804796177.10 0.00 +S 1049 4983 1 560221.704796205.80 0.00 +S 1049 4985 1 560262.704796234.50 0.00 +S 1049 4987 1 560303.604796263.20 0.00 +S 1049 4989 1 560344.604796291.90 0.00 +S 1049 4991 1 560385.504796320.50 0.00 +S 1049 4993 1 560426.504796349.20 0.00 +S 1049 4995 1 560467.504796377.90 0.00 +S 1049 4997 1 560508.404796406.60 0.00 +S 1049 4999 1 560549.404796435.20 0.00 +S 1049 5001 1 560590.304796463.90 0.00 +S 1049 5003 1 560631.304796492.60 0.00 +S 1049 5005 1 560672.304796521.30 0.00 +S 1049 5007 1 560713.204796550.00 0.00 +S 1049 5009 1 560754.204796578.60 0.00 +S 1049 5011 1 560795.104796607.30 0.00 +S 1049 5013 1 560836.104796636.00 0.00 +S 1049 5015 1 560877.004796664.70 0.00 +S 1049 5017 1 560918.004796693.40 0.00 +S 1049 5019 1 560959.004796722.00 0.00 +S 1049 5021 1 560999.904796750.70 0.00 +S 1049 5023 1 561040.904796779.40 0.00 +S 1049 5025 1 561081.804796808.10 0.00 +S 1049 5027 1 561122.804796836.80 0.00 +S 1049 5029 1 561163.704796865.40 0.00 +S 1049 5031 1 561204.704796894.10 0.00 +S 1049 5033 1 561245.704796922.80 0.00 +S 1049 5035 1 561286.604796951.50 0.00 +S 1049 5037 1 561327.604796980.10 0.00 +S 1049 5039 1 561368.504797008.80 0.00 +S 1049 5041 1 561409.504797037.50 0.00 +S 1049 5043 1 561450.404797066.20 0.00 +S 1049 5045 1 561491.404797094.90 0.00 +S 1049 5047 1 561532.404797123.50 0.00 +S 1049 5049 1 561573.304797152.20 0.00 +S 1049 5051 1 561614.304797180.90 0.00 +S 1049 5053 1 561655.204797209.60 0.00 +S 1049 5055 1 561696.204797238.30 0.00 +S 1049 5057 1 561737.104797266.90 0.00 +S 1049 5059 1 561778.104797295.60 0.00 +S 1049 5061 1 561819.104797324.30 0.00 +S 1049 5063 1 561860.004797353.00 0.00 +S 1049 5065 1 561901.004797381.60 0.00 +S 1049 5067 1 561941.904797410.30 0.00 +S 1049 5069 1 561982.904797439.00 0.00 +S 1049 5071 1 562023.904797467.70 0.00 +S 1049 5073 1 562064.804797496.40 0.00 +S 1049 5075 1 562105.804797525.00 0.00 +S 1049 5077 1 562146.704797553.70 0.00 +S 1049 5079 1 562187.704797582.40 0.00 +S 1049 5081 1 562228.604797611.10 0.00 +S 1049 5083 1 562269.604797639.80 0.00 +S 1049 5085 1 562310.604797668.40 0.00 +S 1049 5087 1 562351.504797697.10 0.00 +S 1049 5089 1 562392.504797725.80 0.00 +S 1049 5091 1 562433.404797754.50 0.00 +S 1049 5093 1 562474.404797783.20 0.00 +S 1049 5095 1 562515.304797811.80 0.00 +S 1049 5097 1 562556.304797840.50 0.00 +S 1049 5099 1 562597.304797869.20 0.00 +S 1049 5101 1 562638.204797897.90 0.00 +S 1049 5103 1 562679.204797926.50 0.00 +S 1049 5105 1 562720.104797955.20 0.00 +S 1049 5107 1 562761.104797983.90 0.00 +S 1049 5109 1 562802.004798012.60 0.00 +S 1049 5111 1 562843.004798041.30 0.00 +S 1049 5113 1 562884.004798069.90 0.00 +S 1049 5115 1 562924.904798098.60 0.00 +S 1049 5117 1 562965.904798127.30 0.00 +S 1049 5119 1 563006.804798156.00 0.00 +S 1049 5121 1 563047.804798184.70 0.00 +S 1049 5123 1 563088.704798213.30 0.00 +S 1049 5125 1 563129.704798242.00 0.00 +S 1049 5127 1 563170.704798270.70 0.00 +S 1049 5129 1 563211.604798299.40 0.00 +S 1049 5131 1 563252.604798328.00 0.00 +S 1049 5133 1 563293.504798356.70 0.00 +S 1049 5135 1 563334.504798385.40 0.00 +S 1051 4961 1 559799.904795849.40 0.00 +S 1051 4963 1 559840.804795878.10 0.00 +S 1051 4965 1 559881.804795906.70 0.00 +S 1051 4967 1 559922.704795935.40 0.00 +S 1051 4969 1 559963.704795964.10 0.00 +S 1051 4971 1 560004.704795992.80 0.00 +S 1051 4973 1 560045.604796021.50 0.00 +S 1051 4975 1 560086.604796050.10 0.00 +S 1051 4977 1 560127.504796078.80 0.00 +S 1051 4979 1 560168.504796107.50 0.00 +S 1051 4981 1 560209.404796136.20 0.00 +S 1051 4983 1 560250.404796164.90 0.00 +S 1051 4985 1 560291.404796193.50 0.00 +S 1051 4987 1 560332.304796222.20 0.00 +S 1051 4989 1 560373.304796250.90 0.00 +S 1051 4991 1 560414.204796279.60 0.00 +S 1051 4993 1 560455.204796308.30 0.00 +S 1051 4995 1 560496.104796336.90 0.00 +S 1051 4997 1 560537.104796365.60 0.00 +S 1051 4999 1 560578.104796394.30 0.00 +S 1051 5001 1 560619.004796423.00 0.00 +S 1051 5003 1 560660.004796451.60 0.00 +S 1051 5005 1 560700.904796480.30 0.00 +S 1051 5007 1 560741.904796509.00 0.00 +S 1051 5009 1 560782.804796537.70 0.00 +S 1051 5011 1 560823.804796566.40 0.00 +S 1051 5013 1 560864.804796595.00 0.00 +S 1051 5015 1 560905.704796623.70 0.00 +S 1051 5017 1 560946.704796652.40 0.00 +S 1051 5019 1 560987.604796681.10 0.00 +S 1051 5021 1 561028.604796709.80 0.00 +S 1051 5023 1 561069.504796738.40 0.00 +S 1051 5025 1 561110.504796767.10 0.00 +S 1051 5027 1 561151.504796795.80 0.00 +S 1051 5029 1 561192.404796824.50 0.00 +S 1051 5031 1 561233.404796853.20 0.00 +S 1051 5033 1 561274.304796881.80 0.00 +S 1051 5035 1 561315.304796910.50 0.00 +S 1051 5037 1 561356.304796939.20 0.00 +S 1051 5039 1 561397.204796967.90 0.00 +S 1051 5041 1 561438.204796996.50 0.00 +S 1051 5043 1 561479.104797025.20 0.00 +S 1051 5045 1 561520.104797053.90 0.00 +S 1051 5047 1 561561.004797082.60 0.00 +S 1051 5049 1 561602.004797111.30 0.00 +S 1051 5051 1 561643.004797139.90 0.00 +S 1051 5053 1 561683.904797168.60 0.00 +S 1051 5055 1 561724.904797197.30 0.00 +S 1051 5057 1 561765.804797226.00 0.00 +S 1051 5059 1 561806.804797254.70 0.00 +S 1051 5061 1 561847.704797283.30 0.00 +S 1051 5063 1 561888.704797312.00 0.00 +S 1051 5065 1 561929.704797340.70 0.00 +S 1051 5067 1 561970.604797369.40 0.00 +S 1051 5069 1 562011.604797398.00 0.00 +S 1051 5071 1 562052.504797426.70 0.00 +S 1051 5073 1 562093.504797455.40 0.00 +S 1051 5075 1 562134.404797484.10 0.00 +S 1051 5077 1 562175.404797512.80 0.00 +S 1051 5079 1 562216.404797541.40 0.00 +S 1051 5081 1 562257.304797570.10 0.00 +S 1051 5083 1 562298.304797598.80 0.00 +S 1051 5085 1 562339.204797627.50 0.00 +S 1051 5087 1 562380.204797656.20 0.00 +S 1051 5089 1 562421.104797684.80 0.00 +S 1051 5091 1 562462.104797713.50 0.00 +S 1051 5093 1 562503.104797742.20 0.00 +S 1051 5095 1 562544.004797770.90 0.00 +S 1051 5097 1 562585.004797799.60 0.00 +S 1051 5099 1 562625.904797828.20 0.00 +S 1051 5101 1 562666.904797856.90 0.00 +S 1051 5103 1 562707.904797885.60 0.00 +S 1051 5105 1 562748.804797914.30 0.00 +S 1051 5107 1 562789.804797942.90 0.00 +S 1051 5109 1 562830.704797971.60 0.00 +S 1051 5111 1 562871.704798000.30 0.00 +S 1051 5113 1 562912.604798029.00 0.00 +S 1051 5115 1 562953.604798057.70 0.00 +S 1051 5117 1 562994.604798086.30 0.00 +S 1051 5119 1 563035.504798115.00 0.00 +S 1051 5121 1 563076.504798143.70 0.00 +S 1051 5123 1 563117.404798172.40 0.00 +S 1051 5125 1 563158.404798201.10 0.00 +S 1051 5127 1 563199.304798229.70 0.00 +S 1051 5129 1 563240.304798258.40 0.00 +S 1051 5131 1 563281.304798287.10 0.00 +S 1051 5133 1 563322.204798315.80 0.00 +S 1051 5135 1 563363.204798344.40 0.00 +S 1053 4961 1 559828.504795808.40 0.00 +S 1053 4963 1 559869.504795837.10 0.00 +S 1053 4965 1 559910.504795865.80 0.00 +S 1053 4967 1 559951.404795894.50 0.00 +S 1053 4969 1 559992.404795923.10 0.00 +S 1053 4971 1 560033.304795951.80 0.00 +S 1053 4973 1 560074.304795980.50 0.00 +S 1053 4975 1 560115.204796009.20 0.00 +S 1053 4977 1 560156.204796037.90 0.00 +S 1053 4979 1 560197.204796066.50 0.00 +S 1053 4981 1 560238.104796095.20 0.00 +S 1053 4983 1 560279.104796123.90 0.00 +S 1053 4985 1 560320.004796152.60 0.00 +S 1053 4987 1 560361.004796181.30 0.00 +S 1053 4989 1 560401.904796209.90 0.00 +S 1053 4991 1 560442.904796238.60 0.00 +S 1053 4993 1 560483.904796267.30 0.00 +S 1053 4995 1 560524.804796296.00 0.00 +S 1053 4997 1 560565.804796324.70 0.00 +S 1053 4999 1 560606.704796353.30 0.00 +S 1053 5001 1 560647.704796382.00 0.00 +S 1053 5003 1 560688.704796410.70 0.00 +S 1053 5005 1 560729.604796439.40 0.00 +S 1053 5007 1 560770.604796468.00 0.00 +S 1053 5009 1 560811.504796496.70 0.00 +S 1053 5011 1 560852.504796525.40 0.00 +S 1053 5013 1 560893.404796554.10 0.00 +S 1053 5015 1 560934.404796582.80 0.00 +S 1053 5017 1 560975.404796611.40 0.00 +S 1053 5019 1 561016.304796640.10 0.00 +S 1053 5021 1 561057.304796668.80 0.00 +S 1053 5023 1 561098.204796697.50 0.00 +S 1053 5025 1 561139.204796726.20 0.00 +S 1053 5027 1 561180.104796754.80 0.00 +S 1053 5029 1 561221.104796783.50 0.00 +S 1053 5031 1 561262.104796812.20 0.00 +S 1053 5033 1 561303.004796840.90 0.00 +S 1053 5035 1 561344.004796869.60 0.00 +S 1053 5037 1 561384.904796898.20 0.00 +S 1053 5039 1 561425.904796926.90 0.00 +S 1053 5041 1 561466.804796955.60 0.00 +S 1053 5043 1 561507.804796984.30 0.00 +S 1053 5045 1 561548.804797012.90 0.00 +S 1053 5047 1 561589.704797041.60 0.00 +S 1053 5049 1 561630.704797070.30 0.00 +S 1053 5051 1 561671.604797099.00 0.00 +S 1053 5053 1 561712.604797127.70 0.00 +S 1053 5055 1 561753.504797156.30 0.00 +S 1053 5057 1 561794.504797185.00 0.00 +S 1053 5059 1 561835.504797213.70 0.00 +S 1053 5061 1 561876.404797242.40 0.00 +S 1053 5063 1 561917.404797271.10 0.00 +S 1053 5065 1 561958.304797299.70 0.00 +S 1053 5067 1 561999.304797328.40 0.00 +S 1053 5069 1 562040.304797357.10 0.00 +S 1053 5071 1 562081.204797385.80 0.00 +S 1053 5073 1 562122.204797414.40 0.00 +S 1053 5075 1 562163.104797443.10 0.00 +S 1053 5077 1 562204.104797471.80 0.00 +S 1053 5079 1 562245.004797500.50 0.00 +S 1053 5081 1 562286.004797529.20 0.00 +S 1053 5083 1 562327.004797557.80 0.00 +S 1053 5085 1 562367.904797586.50 0.00 +S 1053 5087 1 562408.904797615.20 0.00 +S 1053 5089 1 562449.804797643.90 0.00 +S 1053 5091 1 562490.804797672.60 0.00 +S 1053 5093 1 562531.704797701.20 0.00 +S 1053 5095 1 562572.704797729.90 0.00 +S 1053 5097 1 562613.704797758.60 0.00 +S 1053 5099 1 562654.604797787.30 0.00 +S 1053 5101 1 562695.604797816.00 0.00 +S 1053 5103 1 562736.504797844.60 0.00 +S 1053 5105 1 562777.504797873.30 0.00 +S 1053 5107 1 562818.404797902.00 0.00 +S 1053 5109 1 562859.404797930.70 0.00 +S 1053 5111 1 562900.404797959.30 0.00 +S 1053 5113 1 562941.304797988.00 0.00 +S 1053 5115 1 562982.304798016.70 0.00 +S 1053 5117 1 563023.204798045.40 0.00 +S 1053 5119 1 563064.204798074.10 0.00 +S 1053 5121 1 563105.104798102.70 0.00 +S 1053 5123 1 563146.104798131.40 0.00 +S 1053 5125 1 563187.104798160.10 0.00 +S 1053 5127 1 563228.004798188.80 0.00 +S 1053 5129 1 563269.004798217.50 0.00 +S 1053 5131 1 563309.904798246.10 0.00 +S 1053 5133 1 563350.904798274.80 0.00 +S 1053 5135 1 563391.904798303.50 0.00 +S 1055 4961 1 559857.204795767.50 0.00 +S 1055 4963 1 559898.204795796.20 0.00 +S 1055 4965 1 559939.104795824.80 0.00 +S 1055 4967 1 559980.104795853.50 0.00 +S 1055 4969 1 560021.104795882.20 0.00 +S 1055 4971 1 560062.004795910.90 0.00 +S 1055 4973 1 560103.004795939.50 0.00 +S 1055 4975 1 560143.904795968.20 0.00 +S 1055 4977 1 560184.904795996.90 0.00 +S 1055 4979 1 560225.804796025.60 0.00 +S 1055 4981 1 560266.804796054.30 0.00 +S 1055 4983 1 560307.804796082.90 0.00 +S 1055 4985 1 560348.704796111.60 0.00 +S 1055 4987 1 560389.704796140.30 0.00 +S 1055 4989 1 560430.604796169.00 0.00 +S 1055 4991 1 560471.604796197.70 0.00 +S 1055 4993 1 560512.504796226.30 0.00 +S 1055 4995 1 560553.504796255.00 0.00 +S 1055 4997 1 560594.504796283.70 0.00 +S 1055 4999 1 560635.404796312.40 0.00 +S 1055 5001 1 560676.404796341.10 0.00 +S 1055 5003 1 560717.304796369.70 0.00 +S 1055 5005 1 560758.304796398.40 0.00 +S 1055 5007 1 560799.204796427.10 0.00 +S 1055 5009 1 560840.204796455.80 0.00 +S 1055 5011 1 560881.204796484.40 0.00 +S 1055 5013 1 560922.104796513.10 0.00 +S 1055 5015 1 560963.104796541.80 0.00 +S 1055 5017 1 561004.004796570.50 0.00 +S 1055 5019 1 561045.004796599.20 0.00 +S 1055 5021 1 561085.904796627.80 0.00 +S 1055 5023 1 561126.904796656.50 0.00 +S 1055 5025 1 561167.904796685.20 0.00 +S 1055 5027 1 561208.804796713.90 0.00 +S 1055 5029 1 561249.804796742.60 0.00 +S 1055 5031 1 561290.704796771.20 0.00 +S 1055 5033 1 561331.704796799.90 0.00 +S 1055 5035 1 561372.704796828.60 0.00 +S 1055 5037 1 561413.604796857.30 0.00 +S 1055 5039 1 561454.604796886.00 0.00 +S 1055 5041 1 561495.504796914.60 0.00 +S 1055 5043 1 561536.504796943.30 0.00 +S 1055 5045 1 561577.404796972.00 0.00 +S 1055 5047 1 561618.404797000.70 0.00 +S 1055 5049 1 561659.404797029.30 0.00 +S 1055 5051 1 561700.304797058.00 0.00 +S 1055 5053 1 561741.304797086.70 0.00 +S 1055 5055 1 561782.204797115.40 0.00 +S 1055 5057 1 561823.204797144.10 0.00 +S 1055 5059 1 561864.104797172.70 0.00 +S 1055 5061 1 561905.104797201.40 0.00 +S 1055 5063 1 561946.104797230.10 0.00 +S 1055 5065 1 561987.004797258.80 0.00 +S 1055 5067 1 562028.004797287.50 0.00 +S 1055 5069 1 562068.904797316.10 0.00 +S 1055 5071 1 562109.904797344.80 0.00 +S 1055 5073 1 562150.804797373.50 0.00 +S 1055 5075 1 562191.804797402.20 0.00 +S 1055 5077 1 562232.804797430.80 0.00 +S 1055 5079 1 562273.704797459.50 0.00 +S 1055 5081 1 562314.704797488.20 0.00 +S 1055 5083 1 562355.604797516.90 0.00 +S 1055 5085 1 562396.604797545.60 0.00 +S 1055 5087 1 562437.504797574.20 0.00 +S 1055 5089 1 562478.504797602.90 0.00 +S 1055 5091 1 562519.504797631.60 0.00 +S 1055 5093 1 562560.404797660.30 0.00 +S 1055 5095 1 562601.404797689.00 0.00 +S 1055 5097 1 562642.304797717.60 0.00 +S 1055 5099 1 562683.304797746.30 0.00 +S 1055 5101 1 562724.304797775.00 0.00 +S 1055 5103 1 562765.204797803.70 0.00 +S 1055 5105 1 562806.204797832.40 0.00 +S 1055 5107 1 562847.104797861.00 0.00 +S 1055 5109 1 562888.104797889.70 0.00 +S 1055 5111 1 562929.004797918.40 0.00 +S 1055 5113 1 562970.004797947.10 0.00 +S 1055 5115 1 563011.004797975.70 0.00 +S 1055 5117 1 563051.904798004.40 0.00 +S 1055 5119 1 563092.904798033.10 0.00 +S 1055 5121 1 563133.804798061.80 0.00 +S 1055 5123 1 563174.804798090.50 0.00 +S 1055 5125 1 563215.704798119.10 0.00 +S 1055 5127 1 563256.704798147.80 0.00 +S 1055 5129 1 563297.704798176.50 0.00 +S 1055 5131 1 563338.604798205.20 0.00 +S 1055 5133 1 563379.604798233.90 0.00 +S 1055 5135 1 563420.504798262.50 0.00 +S 1057 4961 1 559885.904795726.50 0.00 +S 1057 4963 1 559926.904795755.20 0.00 +S 1057 4965 1 559967.804795783.90 0.00 +S 1057 4967 1 560008.804795812.60 0.00 +S 1057 4969 1 560049.704795841.20 0.00 +S 1057 4971 1 560090.704795869.90 0.00 +S 1057 4973 1 560131.604795898.60 0.00 +S 1057 4975 1 560172.604795927.30 0.00 +S 1057 4977 1 560213.604795955.90 0.00 +S 1057 4979 1 560254.504795984.60 0.00 +S 1057 4981 1 560295.504796013.30 0.00 +S 1057 4983 1 560336.404796042.00 0.00 +S 1057 4985 1 560377.404796070.70 0.00 +S 1057 4987 1 560418.304796099.30 0.00 +S 1057 4989 1 560459.304796128.00 0.00 +S 1057 4991 1 560500.304796156.70 0.00 +S 1057 4993 1 560541.204796185.40 0.00 +S 1057 4995 1 560582.204796214.10 0.00 +S 1057 4997 1 560623.104796242.70 0.00 +S 1057 4999 1 560664.104796271.40 0.00 +S 1057 5001 1 560705.104796300.10 0.00 +S 1057 5003 1 560746.004796328.80 0.00 +S 1057 5005 1 560787.004796357.50 0.00 +S 1057 5007 1 560827.904796386.10 0.00 +S 1057 5009 1 560868.904796414.80 0.00 +S 1057 5011 1 560909.804796443.50 0.00 +S 1057 5013 1 560950.804796472.20 0.00 +S 1057 5015 1 560991.804796500.80 0.00 +S 1057 5017 1 561032.704796529.50 0.00 +S 1057 5019 1 561073.704796558.20 0.00 +S 1057 5021 1 561114.604796586.90 0.00 +S 1057 5023 1 561155.604796615.60 0.00 +S 1057 5025 1 561196.504796644.20 0.00 +S 1057 5027 1 561237.504796672.90 0.00 +S 1057 5029 1 561278.504796701.60 0.00 +S 1057 5031 1 561319.404796730.30 0.00 +S 1057 5033 1 561360.404796759.00 0.00 +S 1057 5035 1 561401.304796787.60 0.00 +S 1057 5037 1 561442.304796816.30 0.00 +S 1057 5039 1 561483.204796845.00 0.00 +S 1057 5041 1 561524.204796873.70 0.00 +S 1057 5043 1 561565.204796902.40 0.00 +S 1057 5045 1 561606.104796931.00 0.00 +S 1057 5047 1 561647.104796959.70 0.00 +S 1057 5049 1 561688.004796988.40 0.00 +S 1057 5051 1 561729.004797017.10 0.00 +S 1057 5053 1 561769.904797045.70 0.00 +S 1057 5055 1 561810.904797074.40 0.00 +S 1057 5057 1 561851.904797103.10 0.00 +S 1057 5059 1 561892.804797131.80 0.00 +S 1057 5061 1 561933.804797160.50 0.00 +S 1057 5063 1 561974.704797189.10 0.00 +S 1057 5065 1 562015.704797217.80 0.00 +S 1057 5067 1 562056.704797246.50 0.00 +S 1057 5069 1 562097.604797275.20 0.00 +S 1057 5071 1 562138.604797303.90 0.00 +S 1057 5073 1 562179.504797332.50 0.00 +S 1057 5075 1 562220.504797361.20 0.00 +S 1057 5077 1 562261.404797389.90 0.00 +S 1057 5079 1 562302.404797418.60 0.00 +S 1057 5081 1 562343.404797447.20 0.00 +S 1057 5083 1 562384.304797475.90 0.00 +S 1057 5085 1 562425.304797504.60 0.00 +S 1057 5087 1 562466.204797533.30 0.00 +S 1057 5089 1 562507.204797562.00 0.00 +S 1057 5091 1 562548.104797590.60 0.00 +S 1057 5093 1 562589.104797619.30 0.00 +S 1057 5095 1 562630.104797648.00 0.00 +S 1057 5097 1 562671.004797676.70 0.00 +S 1057 5099 1 562712.004797705.40 0.00 +S 1057 5101 1 562752.904797734.00 0.00 +S 1057 5103 1 562793.904797762.70 0.00 +S 1057 5105 1 562834.804797791.40 0.00 +S 1057 5107 1 562875.804797820.10 0.00 +S 1057 5109 1 562916.804797848.80 0.00 +S 1057 5111 1 562957.704797877.40 0.00 +S 1057 5113 1 562998.704797906.10 0.00 +S 1057 5115 1 563039.604797934.80 0.00 +S 1057 5117 1 563080.604797963.50 0.00 +S 1057 5119 1 563121.504797992.10 0.00 +S 1057 5121 1 563162.504798020.80 0.00 +S 1057 5123 1 563203.504798049.50 0.00 +S 1057 5125 1 563244.404798078.20 0.00 +S 1057 5127 1 563285.404798106.90 0.00 +S 1057 5129 1 563326.304798135.50 0.00 +S 1057 5131 1 563367.304798164.20 0.00 +S 1057 5133 1 563408.304798192.90 0.00 +S 1057 5135 1 563449.204798221.60 0.00 +S 1059 4961 1 559914.604795685.60 0.00 +S 1059 4963 1 559955.504795714.20 0.00 +S 1059 4965 1 559996.504795742.90 0.00 +S 1059 4967 1 560037.504795771.60 0.00 +S 1059 4969 1 560078.404795800.30 0.00 +S 1059 4971 1 560119.404795829.00 0.00 +S 1059 4973 1 560160.304795857.60 0.00 +S 1059 4975 1 560201.304795886.30 0.00 +S 1059 4977 1 560242.204795915.00 0.00 +S 1059 4979 1 560283.204795943.70 0.00 +S 1059 4981 1 560324.204795972.30 0.00 +S 1059 4983 1 560365.104796001.00 0.00 +S 1059 4985 1 560406.104796029.70 0.00 +S 1059 4987 1 560447.004796058.40 0.00 +S 1059 4989 1 560488.004796087.10 0.00 +S 1059 4991 1 560528.904796115.70 0.00 +S 1059 4993 1 560569.904796144.40 0.00 +S 1059 4995 1 560610.904796173.10 0.00 +S 1059 4997 1 560651.804796201.80 0.00 +S 1059 4999 1 560692.804796230.50 0.00 +S 1059 5001 1 560733.704796259.10 0.00 +S 1059 5003 1 560774.704796287.80 0.00 +S 1059 5005 1 560815.604796316.50 0.00 +S 1059 5007 1 560856.604796345.20 0.00 +S 1059 5009 1 560897.604796373.90 0.00 +S 1059 5011 1 560938.504796402.50 0.00 +S 1059 5013 1 560979.504796431.20 0.00 +S 1059 5015 1 561020.404796459.90 0.00 +S 1059 5017 1 561061.404796488.60 0.00 +S 1059 5019 1 561102.304796517.20 0.00 +S 1059 5021 1 561143.304796545.90 0.00 +S 1059 5023 1 561184.304796574.60 0.00 +S 1059 5025 1 561225.204796603.30 0.00 +S 1059 5027 1 561266.204796632.00 0.00 +S 1059 5029 1 561307.104796660.60 0.00 +S 1059 5031 1 561348.104796689.30 0.00 +S 1059 5033 1 561389.104796718.00 0.00 +S 1059 5035 1 561430.004796746.70 0.00 +S 1059 5037 1 561471.004796775.40 0.00 +S 1059 5039 1 561511.904796804.00 0.00 +S 1059 5041 1 561552.904796832.70 0.00 +S 1059 5043 1 561593.804796861.40 0.00 +S 1059 5045 1 561634.804796890.10 0.00 +S 1059 5047 1 561675.804796918.80 0.00 +S 1059 5049 1 561716.704796947.40 0.00 +S 1059 5051 1 561757.704796976.10 0.00 +S 1059 5053 1 561798.604797004.80 0.00 +S 1059 5055 1 561839.604797033.50 0.00 +S 1059 5057 1 561880.504797062.10 0.00 +S 1059 5059 1 561921.504797090.80 0.00 +S 1059 5061 1 561962.504797119.50 0.00 +S 1059 5063 1 562003.404797148.20 0.00 +S 1059 5065 1 562044.404797176.90 0.00 +S 1059 5067 1 562085.304797205.50 0.00 +S 1059 5069 1 562126.304797234.20 0.00 +S 1059 5071 1 562167.204797262.90 0.00 +S 1059 5073 1 562208.204797291.60 0.00 +S 1059 5075 1 562249.204797320.30 0.00 +S 1059 5077 1 562290.104797348.90 0.00 +S 1059 5079 1 562331.104797377.60 0.00 +S 1059 5081 1 562372.004797406.30 0.00 +S 1059 5083 1 562413.004797435.00 0.00 +S 1059 5085 1 562453.904797463.60 0.00 +S 1059 5087 1 562494.904797492.30 0.00 +S 1059 5089 1 562535.904797521.00 0.00 +S 1059 5091 1 562576.804797549.70 0.00 +S 1059 5093 1 562617.804797578.40 0.00 +S 1059 5095 1 562658.704797607.00 0.00 +S 1059 5097 1 562699.704797635.70 0.00 +S 1059 5099 1 562740.704797664.40 0.00 +S 1059 5101 1 562781.604797693.10 0.00 +S 1059 5103 1 562822.604797721.80 0.00 +S 1059 5105 1 562863.504797750.40 0.00 +S 1059 5107 1 562904.504797779.10 0.00 +S 1059 5109 1 562945.404797807.80 0.00 +S 1059 5111 1 562986.404797836.50 0.00 +S 1059 5113 1 563027.404797865.20 0.00 +S 1059 5115 1 563068.304797893.80 0.00 +S 1059 5117 1 563109.304797922.50 0.00 +S 1059 5119 1 563150.204797951.20 0.00 +S 1059 5121 1 563191.204797979.90 0.00 +S 1059 5123 1 563232.104798008.50 0.00 +S 1059 5125 1 563273.104798037.20 0.00 +S 1059 5127 1 563314.104798065.90 0.00 +S 1059 5129 1 563355.004798094.60 0.00 +S 1059 5131 1 563396.004798123.30 0.00 +S 1059 5133 1 563436.904798151.90 0.00 +S 1059 5135 1 563477.904798180.60 0.00 +S 1061 4961 1 559943.304795644.60 0.00 +S 1061 4963 1 559984.204795673.30 0.00 +S 1061 4965 1 560025.204795702.00 0.00 +S 1061 4967 1 560066.104795730.60 0.00 +S 1061 4969 1 560107.104795759.30 0.00 +S 1061 4971 1 560148.004795788.00 0.00 +S 1061 4973 1 560189.004795816.70 0.00 +S 1061 4975 1 560230.004795845.40 0.00 +S 1061 4977 1 560270.904795874.00 0.00 +S 1061 4979 1 560311.904795902.70 0.00 +S 1061 4981 1 560352.804795931.40 0.00 +S 1061 4983 1 560393.804795960.10 0.00 +S 1061 4985 1 560434.704795988.70 0.00 +S 1061 4987 1 560475.704796017.40 0.00 +S 1061 4989 1 560516.704796046.10 0.00 +S 1061 4991 1 560557.604796074.80 0.00 +S 1061 4993 1 560598.604796103.50 0.00 +S 1061 4995 1 560639.504796132.10 0.00 +S 1061 4997 1 560680.504796160.80 0.00 +S 1061 4999 1 560721.504796189.50 0.00 +S 1061 5001 1 560762.404796218.20 0.00 +S 1061 5003 1 560803.404796246.90 0.00 +S 1061 5005 1 560844.304796275.50 0.00 +S 1061 5007 1 560885.304796304.20 0.00 +S 1061 5009 1 560926.204796332.90 0.00 +S 1061 5011 1 560967.204796361.60 0.00 +S 1061 5013 1 561008.204796390.30 0.00 +S 1061 5015 1 561049.104796418.90 0.00 +S 1061 5017 1 561090.104796447.60 0.00 +S 1061 5019 1 561131.004796476.30 0.00 +S 1061 5021 1 561172.004796505.00 0.00 +S 1061 5023 1 561212.904796533.60 0.00 +S 1061 5025 1 561253.904796562.30 0.00 +S 1061 5027 1 561294.904796591.00 0.00 +S 1061 5029 1 561335.804796619.70 0.00 +S 1061 5031 1 561376.804796648.40 0.00 +S 1061 5033 1 561417.704796677.00 0.00 +S 1061 5035 1 561458.704796705.70 0.00 +S 1061 5037 1 561499.604796734.40 0.00 +S 1061 5039 1 561540.604796763.10 0.00 +S 1061 5041 1 561581.604796791.80 0.00 +S 1061 5043 1 561622.504796820.40 0.00 +S 1061 5045 1 561663.504796849.10 0.00 +S 1061 5047 1 561704.404796877.80 0.00 +S 1061 5049 1 561745.404796906.50 0.00 +S 1061 5051 1 561786.304796935.20 0.00 +S 1061 5053 1 561827.304796963.80 0.00 +S 1061 5055 1 561868.304796992.50 0.00 +S 1061 5057 1 561909.204797021.20 0.00 +S 1061 5059 1 561950.204797049.90 0.00 +S 1061 5061 1 561991.104797078.50 0.00 +S 1061 5063 1 562032.104797107.20 0.00 +S 1061 5065 1 562073.104797135.90 0.00 +S 1061 5067 1 562114.004797164.60 0.00 +S 1061 5069 1 562155.004797193.30 0.00 +S 1061 5071 1 562195.904797221.90 0.00 +S 1061 5073 1 562236.904797250.60 0.00 +S 1061 5075 1 562277.804797279.30 0.00 +S 1061 5077 1 562318.804797308.00 0.00 +S 1061 5079 1 562359.804797336.70 0.00 +S 1061 5081 1 562400.704797365.30 0.00 +S 1061 5083 1 562441.704797394.00 0.00 +S 1061 5085 1 562482.604797422.70 0.00 +S 1061 5087 1 562523.604797451.40 0.00 +S 1061 5089 1 562564.504797480.00 0.00 +S 1061 5091 1 562605.504797508.70 0.00 +S 1061 5093 1 562646.504797537.40 0.00 +S 1061 5095 1 562687.404797566.10 0.00 +S 1061 5097 1 562728.404797594.80 0.00 +S 1061 5099 1 562769.304797623.40 0.00 +S 1061 5101 1 562810.304797652.10 0.00 +S 1061 5103 1 562851.204797680.80 0.00 +S 1061 5105 1 562892.204797709.50 0.00 +S 1061 5107 1 562933.204797738.20 0.00 +S 1061 5109 1 562974.104797766.80 0.00 +S 1061 5111 1 563015.104797795.50 0.00 +S 1061 5113 1 563056.004797824.20 0.00 +S 1061 5115 1 563097.004797852.90 0.00 +S 1061 5117 1 563137.904797881.60 0.00 +S 1061 5119 1 563178.904797910.20 0.00 +S 1061 5121 1 563219.904797938.90 0.00 +S 1061 5123 1 563260.804797967.60 0.00 +S 1061 5125 1 563301.804797996.30 0.00 +S 1061 5127 1 563342.704798024.90 0.00 +S 1061 5129 1 563383.704798053.60 0.00 +S 1061 5131 1 563424.704798082.30 0.00 +S 1061 5133 1 563465.604798111.00 0.00 +S 1061 5135 1 563506.604798139.70 0.00 +S 1063 4961 1 559971.904795603.60 0.00 +S 1063 4963 1 560012.904795632.30 0.00 +S 1063 4965 1 560053.904795661.00 0.00 +S 1063 4967 1 560094.804795689.70 0.00 +S 1063 4969 1 560135.804795718.40 0.00 +S 1063 4971 1 560176.704795747.00 0.00 +S 1063 4973 1 560217.704795775.70 0.00 +S 1063 4975 1 560258.604795804.40 0.00 +S 1063 4977 1 560299.604795833.10 0.00 +S 1063 4979 1 560340.604795861.80 0.00 +S 1063 4981 1 560381.504795890.40 0.00 +S 1063 4983 1 560422.504795919.10 0.00 +S 1063 4985 1 560463.404795947.80 0.00 +S 1063 4987 1 560504.404795976.50 0.00 +S 1063 4989 1 560545.304796005.10 0.00 +S 1063 4991 1 560586.304796033.80 0.00 +S 1063 4993 1 560627.304796062.50 0.00 +S 1063 4995 1 560668.204796091.20 0.00 +S 1063 4997 1 560709.204796119.90 0.00 +S 1063 4999 1 560750.104796148.50 0.00 +S 1063 5001 1 560791.104796177.20 0.00 +S 1063 5003 1 560832.004796205.90 0.00 +S 1063 5005 1 560873.004796234.60 0.00 +S 1063 5007 1 560914.004796263.30 0.00 +S 1063 5009 1 560954.904796291.90 0.00 +S 1063 5011 1 560995.904796320.60 0.00 +S 1063 5013 1 561036.804796349.30 0.00 +S 1063 5015 1 561077.804796378.00 0.00 +S 1063 5017 1 561118.704796406.70 0.00 +S 1063 5019 1 561159.704796435.30 0.00 +S 1063 5021 1 561200.704796464.00 0.00 +S 1063 5023 1 561241.604796492.70 0.00 +S 1063 5025 1 561282.604796521.40 0.00 +S 1063 5027 1 561323.504796550.00 0.00 +S 1063 5029 1 561364.504796578.70 0.00 +S 1063 5031 1 561405.504796607.40 0.00 +S 1063 5033 1 561446.404796636.10 0.00 +S 1063 5035 1 561487.404796664.80 0.00 +S 1063 5037 1 561528.304796693.40 0.00 +S 1063 5039 1 561569.304796722.10 0.00 +S 1063 5041 1 561610.204796750.80 0.00 +S 1063 5043 1 561651.204796779.50 0.00 +S 1063 5045 1 561692.204796808.20 0.00 +S 1063 5047 1 561733.104796836.80 0.00 +S 1063 5049 1 561774.104796865.50 0.00 +S 1063 5051 1 561815.004796894.20 0.00 +S 1063 5053 1 561856.004796922.90 0.00 +S 1063 5055 1 561896.904796951.60 0.00 +S 1063 5057 1 561937.904796980.20 0.00 +S 1063 5059 1 561978.904797008.90 0.00 +S 1063 5061 1 562019.804797037.60 0.00 +S 1063 5063 1 562060.804797066.30 0.00 +S 1063 5065 1 562101.704797094.90 0.00 +S 1063 5067 1 562142.704797123.60 0.00 +S 1063 5069 1 562183.604797152.30 0.00 +S 1063 5071 1 562224.604797181.00 0.00 +S 1063 5073 1 562265.604797209.70 0.00 +S 1063 5075 1 562306.504797238.30 0.00 +S 1063 5077 1 562347.504797267.00 0.00 +S 1063 5079 1 562388.404797295.70 0.00 +S 1063 5081 1 562429.404797324.40 0.00 +S 1063 5083 1 562470.304797353.10 0.00 +S 1063 5085 1 562511.304797381.70 0.00 +S 1063 5087 1 562552.304797410.40 0.00 +S 1063 5089 1 562593.204797439.10 0.00 +S 1063 5091 1 562634.204797467.80 0.00 +S 1063 5093 1 562675.104797496.40 0.00 +S 1063 5095 1 562716.104797525.10 0.00 +S 1063 5097 1 562757.104797553.80 0.00 +S 1063 5099 1 562798.004797582.50 0.00 +S 1063 5101 1 562839.004797611.20 0.00 +S 1063 5103 1 562879.904797639.80 0.00 +S 1063 5105 1 562920.904797668.50 0.00 +S 1063 5107 1 562961.804797697.20 0.00 +S 1063 5109 1 563002.804797725.90 0.00 +S 1063 5111 1 563043.804797754.60 0.00 +S 1063 5113 1 563084.704797783.20 0.00 +S 1063 5115 1 563125.704797811.90 0.00 +S 1063 5117 1 563166.604797840.60 0.00 +S 1063 5119 1 563207.604797869.30 0.00 +S 1063 5121 1 563248.504797898.00 0.00 +S 1063 5123 1 563289.504797926.60 0.00 +S 1063 5125 1 563330.504797955.30 0.00 +S 1063 5127 1 563371.404797984.00 0.00 +S 1063 5129 1 563412.404798012.70 0.00 +S 1063 5131 1 563453.304798041.30 0.00 +S 1063 5133 1 563494.304798070.00 0.00 +S 1063 5135 1 563535.204798098.70 0.00 +S 1065 4961 1 560000.604795562.70 0.00 +S 1065 4963 1 560041.604795591.40 0.00 +S 1065 4965 1 560082.504795620.00 0.00 +S 1065 4967 1 560123.504795648.70 0.00 +S 1065 4969 1 560164.404795677.40 0.00 +S 1065 4971 1 560205.404795706.10 0.00 +S 1065 4973 1 560246.404795734.80 0.00 +S 1065 4975 1 560287.304795763.40 0.00 +S 1065 4977 1 560328.304795792.10 0.00 +S 1065 4979 1 560369.204795820.80 0.00 +S 1065 4981 1 560410.204795849.50 0.00 +S 1065 4983 1 560451.104795878.20 0.00 +S 1065 4985 1 560492.104795906.80 0.00 +S 1065 4987 1 560533.104795935.50 0.00 +S 1065 4989 1 560574.004795964.20 0.00 +S 1065 4991 1 560615.004795992.90 0.00 +S 1065 4993 1 560655.904796021.50 0.00 +S 1065 4995 1 560696.904796050.20 0.00 +S 1065 4997 1 560737.904796078.90 0.00 +S 1065 4999 1 560778.804796107.60 0.00 +S 1065 5001 1 560819.804796136.30 0.00 +S 1065 5003 1 560860.704796164.90 0.00 +S 1065 5005 1 560901.704796193.60 0.00 +S 1065 5007 1 560942.604796222.30 0.00 +S 1065 5009 1 560983.604796251.00 0.00 +S 1065 5011 1 561024.604796279.70 0.00 +S 1065 5013 1 561065.504796308.30 0.00 +S 1065 5015 1 561106.504796337.00 0.00 +S 1065 5017 1 561147.404796365.70 0.00 +S 1065 5019 1 561188.404796394.40 0.00 +S 1065 5021 1 561229.304796423.10 0.00 +S 1065 5023 1 561270.304796451.70 0.00 +S 1065 5025 1 561311.304796480.40 0.00 +S 1065 5027 1 561352.204796509.10 0.00 +S 1065 5029 1 561393.204796537.80 0.00 +S 1065 5031 1 561434.104796566.40 0.00 +S 1065 5033 1 561475.104796595.10 0.00 +S 1065 5035 1 561516.004796623.80 0.00 +S 1065 5037 1 561557.004796652.50 0.00 +S 1065 5039 1 561598.004796681.20 0.00 +S 1065 5041 1 561638.904796709.80 0.00 +S 1065 5043 1 561679.904796738.50 0.00 +S 1065 5045 1 561720.804796767.20 0.00 +S 1065 5047 1 561761.804796795.90 0.00 +S 1065 5049 1 561802.704796824.60 0.00 +S 1065 5051 1 561843.704796853.20 0.00 +S 1065 5053 1 561884.704796881.90 0.00 +S 1065 5055 1 561925.604796910.60 0.00 +S 1065 5057 1 561966.604796939.30 0.00 +S 1065 5059 1 562007.504796968.00 0.00 +S 1065 5061 1 562048.504796996.60 0.00 +S 1065 5063 1 562089.504797025.30 0.00 +S 1065 5065 1 562130.404797054.00 0.00 +S 1065 5067 1 562171.404797082.70 0.00 +S 1065 5069 1 562212.304797111.30 0.00 +S 1065 5071 1 562253.304797140.00 0.00 +S 1065 5073 1 562294.204797168.70 0.00 +S 1065 5075 1 562335.204797197.40 0.00 +S 1065 5077 1 562376.204797226.10 0.00 +S 1065 5079 1 562417.104797254.70 0.00 +S 1065 5081 1 562458.104797283.40 0.00 +S 1065 5083 1 562499.004797312.10 0.00 +S 1065 5085 1 562540.004797340.80 0.00 +S 1065 5087 1 562580.904797369.50 0.00 +S 1065 5089 1 562621.904797398.10 0.00 +S 1065 5091 1 562662.904797426.80 0.00 +S 1065 5093 1 562703.804797455.50 0.00 +S 1065 5095 1 562744.804797484.20 0.00 +S 1065 5097 1 562785.704797512.80 0.00 +S 1065 5099 1 562826.704797541.50 0.00 +S 1065 5101 1 562867.604797570.20 0.00 +S 1065 5103 1 562908.604797598.90 0.00 +S 1065 5105 1 562949.604797627.60 0.00 +S 1065 5107 1 562990.504797656.20 0.00 +S 1065 5109 1 563031.504797684.90 0.00 +S 1065 5111 1 563072.404797713.60 0.00 +S 1065 5113 1 563113.404797742.30 0.00 +S 1065 5115 1 563154.304797771.00 0.00 +S 1065 5117 1 563195.304797799.60 0.00 +S 1065 5119 1 563236.304797828.30 0.00 +S 1065 5121 1 563277.204797857.00 0.00 +S 1065 5123 1 563318.204797885.70 0.00 +S 1065 5125 1 563359.104797914.40 0.00 +S 1065 5127 1 563400.104797943.00 0.00 +S 1065 5129 1 563441.104797971.70 0.00 +S 1065 5131 1 563482.004798000.40 0.00 +S 1065 5133 1 563523.004798029.10 0.00 +S 1065 5135 1 563563.904798057.70 0.00 +S 1067 4961 1 560029.304795521.70 0.00 +S 1067 4963 1 560070.304795550.40 0.00 +S 1067 4965 1 560111.204795579.10 0.00 +S 1067 4967 1 560152.204795607.80 0.00 +S 1067 4969 1 560193.104795636.40 0.00 +S 1067 4971 1 560234.104795665.10 0.00 +S 1067 4973 1 560275.004795693.80 0.00 +S 1067 4975 1 560316.004795722.50 0.00 +S 1067 4977 1 560357.004795751.20 0.00 +S 1067 4979 1 560397.904795779.80 0.00 +S 1067 4981 1 560438.904795808.50 0.00 +S 1067 4983 1 560479.804795837.20 0.00 +S 1067 4985 1 560520.804795865.90 0.00 +S 1067 4987 1 560561.704795894.60 0.00 +S 1067 4989 1 560602.704795923.20 0.00 +S 1067 4991 1 560643.704795951.90 0.00 +S 1067 4993 1 560684.604795980.60 0.00 +S 1067 4995 1 560725.604796009.30 0.00 +S 1067 4997 1 560766.504796037.90 0.00 +S 1067 4999 1 560807.504796066.60 0.00 +S 1067 5001 1 560848.404796095.30 0.00 +S 1067 5003 1 560889.404796124.00 0.00 +S 1067 5005 1 560930.404796152.70 0.00 +S 1067 5007 1 560971.304796181.30 0.00 +S 1067 5009 1 561012.304796210.00 0.00 +S 1067 5011 1 561053.204796238.70 0.00 +S 1067 5013 1 561094.204796267.40 0.00 +S 1067 5015 1 561135.104796296.10 0.00 +S 1067 5017 1 561176.104796324.70 0.00 +S 1067 5019 1 561217.104796353.40 0.00 +S 1067 5021 1 561258.004796382.10 0.00 +S 1067 5023 1 561299.004796410.80 0.00 +S 1067 5025 1 561339.904796439.50 0.00 +S 1067 5027 1 561380.904796468.10 0.00 +S 1067 5029 1 561421.904796496.80 0.00 +S 1067 5031 1 561462.804796525.50 0.00 +S 1067 5033 1 561503.804796554.20 0.00 +S 1067 5035 1 561544.704796582.80 0.00 +S 1067 5037 1 561585.704796611.50 0.00 +S 1067 5039 1 561626.604796640.20 0.00 +S 1067 5041 1 561667.604796668.90 0.00 +S 1067 5043 1 561708.604796697.60 0.00 +S 1067 5045 1 561749.504796726.20 0.00 +S 1067 5047 1 561790.504796754.90 0.00 +S 1067 5049 1 561831.404796783.60 0.00 +S 1067 5051 1 561872.404796812.30 0.00 +S 1067 5053 1 561913.304796841.00 0.00 +S 1067 5055 1 561954.304796869.60 0.00 +S 1067 5057 1 561995.304796898.30 0.00 +S 1067 5059 1 562036.204796927.00 0.00 +S 1067 5061 1 562077.204796955.70 0.00 +S 1067 5063 1 562118.104796984.40 0.00 +S 1067 5065 1 562159.104797013.00 0.00 +S 1067 5067 1 562200.004797041.70 0.00 +S 1067 5069 1 562241.004797070.40 0.00 +S 1067 5071 1 562282.004797099.10 0.00 +S 1067 5073 1 562322.904797127.70 0.00 +S 1067 5075 1 562363.904797156.40 0.00 +S 1067 5077 1 562404.804797185.10 0.00 +S 1067 5079 1 562445.804797213.80 0.00 +S 1067 5081 1 562486.704797242.50 0.00 +S 1067 5083 1 562527.704797271.10 0.00 +S 1067 5085 1 562568.704797299.80 0.00 +S 1067 5087 1 562609.604797328.50 0.00 +S 1067 5089 1 562650.604797357.20 0.00 +S 1067 5091 1 562691.504797385.90 0.00 +S 1067 5093 1 562732.504797414.50 0.00 +S 1067 5095 1 562773.504797443.20 0.00 +S 1067 5097 1 562814.404797471.90 0.00 +S 1067 5099 1 562855.404797500.60 0.00 +S 1067 5101 1 562896.304797529.20 0.00 +S 1067 5103 1 562937.304797557.90 0.00 +S 1067 5105 1 562978.204797586.60 0.00 +S 1067 5107 1 563019.204797615.30 0.00 +S 1067 5109 1 563060.204797644.00 0.00 +S 1067 5111 1 563101.104797672.60 0.00 +S 1067 5113 1 563142.104797701.30 0.00 +S 1067 5115 1 563183.004797730.00 0.00 +S 1067 5117 1 563224.004797758.70 0.00 +S 1067 5119 1 563264.904797787.40 0.00 +S 1067 5121 1 563305.904797816.00 0.00 +S 1067 5123 1 563346.904797844.70 0.00 +S 1067 5125 1 563387.804797873.40 0.00 +S 1067 5127 1 563428.804797902.10 0.00 +S 1067 5129 1 563469.704797930.80 0.00 +S 1067 5131 1 563510.704797959.40 0.00 +S 1067 5133 1 563551.604797988.10 0.00 +S 1067 5135 1 563592.604798016.80 0.00 +S 1069 4961 1 560058.004795480.80 0.00 +S 1069 4963 1 560098.904795509.50 0.00 +S 1069 4965 1 560139.904795538.10 0.00 +S 1069 4967 1 560180.804795566.80 0.00 +S 1069 4969 1 560221.804795595.50 0.00 +S 1069 4971 1 560262.804795624.20 0.00 +S 1069 4973 1 560303.704795652.80 0.00 +S 1069 4975 1 560344.704795681.50 0.00 +S 1069 4977 1 560385.604795710.20 0.00 +S 1069 4979 1 560426.604795738.90 0.00 +S 1069 4981 1 560467.504795767.60 0.00 +S 1069 4983 1 560508.504795796.20 0.00 +S 1069 4985 1 560549.504795824.90 0.00 +S 1069 4987 1 560590.404795853.60 0.00 +S 1069 4989 1 560631.404795882.30 0.00 +S 1069 4991 1 560672.304795911.00 0.00 +S 1069 4993 1 560713.304795939.60 0.00 +S 1069 4995 1 560754.304795968.30 0.00 +S 1069 4997 1 560795.204795997.00 0.00 +S 1069 4999 1 560836.204796025.70 0.00 +S 1069 5001 1 560877.104796054.30 0.00 +S 1069 5003 1 560918.104796083.00 0.00 +S 1069 5005 1 560959.004796111.70 0.00 +S 1069 5007 1 561000.004796140.40 0.00 +S 1069 5009 1 561041.004796169.10 0.00 +S 1069 5011 1 561081.904796197.70 0.00 +S 1069 5013 1 561122.904796226.40 0.00 +S 1069 5015 1 561163.804796255.10 0.00 +S 1069 5017 1 561204.804796283.80 0.00 +S 1069 5019 1 561245.704796312.50 0.00 +S 1069 5021 1 561286.704796341.10 0.00 +S 1069 5023 1 561327.704796369.80 0.00 +S 1069 5025 1 561368.604796398.50 0.00 +S 1069 5027 1 561409.604796427.20 0.00 +S 1069 5029 1 561450.504796455.90 0.00 +S 1069 5031 1 561491.504796484.50 0.00 +S 1069 5033 1 561532.404796513.20 0.00 +S 1069 5035 1 561573.404796541.90 0.00 +S 1069 5037 1 561614.404796570.60 0.00 +S 1069 5039 1 561655.304796599.20 0.00 +S 1069 5041 1 561696.304796627.90 0.00 +S 1069 5043 1 561737.204796656.60 0.00 +S 1069 5045 1 561778.204796685.30 0.00 +S 1069 5047 1 561819.104796714.00 0.00 +S 1069 5049 1 561860.104796742.60 0.00 +S 1069 5051 1 561901.104796771.30 0.00 +S 1069 5053 1 561942.004796800.00 0.00 +S 1069 5055 1 561983.004796828.70 0.00 +S 1069 5057 1 562023.904796857.40 0.00 +S 1069 5059 1 562064.904796886.00 0.00 +S 1069 5061 1 562105.904796914.70 0.00 +S 1069 5063 1 562146.804796943.40 0.00 +S 1069 5065 1 562187.804796972.10 0.00 +S 1069 5067 1 562228.704797000.80 0.00 +S 1069 5069 1 562269.704797029.40 0.00 +S 1069 5071 1 562310.604797058.10 0.00 +S 1069 5073 1 562351.604797086.80 0.00 +S 1069 5075 1 562392.604797115.50 0.00 +S 1069 5077 1 562433.504797144.10 0.00 +S 1069 5079 1 562474.504797172.80 0.00 +S 1069 5081 1 562515.404797201.50 0.00 +S 1069 5083 1 562556.404797230.20 0.00 +S 1069 5085 1 562597.304797258.90 0.00 +S 1069 5087 1 562638.304797287.50 0.00 +S 1069 5089 1 562679.304797316.20 0.00 +S 1069 5091 1 562720.204797344.90 0.00 +S 1069 5093 1 562761.204797373.60 0.00 +S 1069 5095 1 562802.104797402.30 0.00 +S 1069 5097 1 562843.104797430.90 0.00 +S 1069 5099 1 562884.004797459.60 0.00 +S 1069 5101 1 562925.004797488.30 0.00 +S 1069 5103 1 562966.004797517.00 0.00 +S 1069 5105 1 563006.904797545.60 0.00 +S 1069 5107 1 563047.904797574.30 0.00 +S 1069 5109 1 563088.804797603.00 0.00 +S 1069 5111 1 563129.804797631.70 0.00 +S 1069 5113 1 563170.704797660.40 0.00 +S 1069 5115 1 563211.704797689.00 0.00 +S 1069 5117 1 563252.704797717.70 0.00 +S 1069 5119 1 563293.604797746.40 0.00 +S 1069 5121 1 563334.604797775.10 0.00 +S 1069 5123 1 563375.504797803.80 0.00 +S 1069 5125 1 563416.504797832.40 0.00 +S 1069 5127 1 563457.504797861.10 0.00 +S 1069 5129 1 563498.404797889.80 0.00 +S 1069 5131 1 563539.404797918.50 0.00 +S 1069 5133 1 563580.304797947.20 0.00 +S 1069 5135 1 563621.304797975.80 0.00 +S 1071 4961 1 560086.704795439.80 0.00 +S 1071 4963 1 560127.604795468.50 0.00 +S 1071 4965 1 560168.604795497.20 0.00 +S 1071 4967 1 560209.504795525.90 0.00 +S 1071 4969 1 560250.504795554.50 0.00 +S 1071 4971 1 560291.404795583.20 0.00 +S 1071 4973 1 560332.404795611.90 0.00 +S 1071 4975 1 560373.404795640.60 0.00 +S 1071 4977 1 560414.304795669.20 0.00 +S 1071 4979 1 560455.304795697.90 0.00 +S 1071 4981 1 560496.204795726.60 0.00 +S 1071 4983 1 560537.204795755.30 0.00 +S 1071 4985 1 560578.104795784.00 0.00 +S 1071 4987 1 560619.104795812.60 0.00 +S 1071 4989 1 560660.104795841.30 0.00 +S 1071 4991 1 560701.004795870.00 0.00 +S 1071 4993 1 560742.004795898.70 0.00 +S 1071 4995 1 560782.904795927.40 0.00 +S 1071 4997 1 560823.904795956.00 0.00 +S 1071 4999 1 560864.804795984.70 0.00 +S 1071 5001 1 560905.804796013.40 0.00 +S 1071 5003 1 560946.804796042.10 0.00 +S 1071 5005 1 560987.704796070.70 0.00 +S 1071 5007 1 561028.704796099.40 0.00 +S 1071 5009 1 561069.604796128.10 0.00 +S 1071 5011 1 561110.604796156.80 0.00 +S 1071 5013 1 561151.504796185.50 0.00 +S 1071 5015 1 561192.504796214.10 0.00 +S 1071 5017 1 561233.504796242.80 0.00 +S 1071 5019 1 561274.404796271.50 0.00 +S 1071 5021 1 561315.404796300.20 0.00 +S 1071 5023 1 561356.304796328.90 0.00 +S 1071 5025 1 561397.304796357.50 0.00 +S 1071 5027 1 561438.304796386.20 0.00 +S 1071 5029 1 561479.204796414.90 0.00 +S 1071 5031 1 561520.204796443.60 0.00 +S 1071 5033 1 561561.104796472.30 0.00 +S 1071 5035 1 561602.104796500.90 0.00 +S 1071 5037 1 561643.004796529.60 0.00 +S 1071 5039 1 561684.004796558.30 0.00 +S 1071 5041 1 561725.004796587.00 0.00 +S 1071 5043 1 561765.904796615.60 0.00 +S 1071 5045 1 561806.904796644.30 0.00 +S 1071 5047 1 561847.804796673.00 0.00 +S 1071 5049 1 561888.804796701.70 0.00 +S 1071 5051 1 561929.704796730.40 0.00 +S 1071 5053 1 561970.704796759.00 0.00 +S 1071 5055 1 562011.704796787.70 0.00 +S 1071 5057 1 562052.604796816.40 0.00 +S 1071 5059 1 562093.604796845.10 0.00 +S 1071 5061 1 562134.504796873.80 0.00 +S 1071 5063 1 562175.504796902.40 0.00 +S 1071 5065 1 562216.404796931.10 0.00 +S 1071 5067 1 562257.404796959.80 0.00 +S 1071 5069 1 562298.404796988.50 0.00 +S 1071 5071 1 562339.304797017.20 0.00 +S 1071 5073 1 562380.304797045.80 0.00 +S 1071 5075 1 562421.204797074.50 0.00 +S 1071 5077 1 562462.204797103.20 0.00 +S 1071 5079 1 562503.104797131.90 0.00 +S 1071 5081 1 562544.104797160.50 0.00 +S 1071 5083 1 562585.104797189.20 0.00 +S 1071 5085 1 562626.004797217.90 0.00 +S 1071 5087 1 562667.004797246.60 0.00 +S 1071 5089 1 562707.904797275.30 0.00 +S 1071 5091 1 562748.904797303.90 0.00 +S 1071 5093 1 562789.904797332.60 0.00 +S 1071 5095 1 562830.804797361.30 0.00 +S 1071 5097 1 562871.804797390.00 0.00 +S 1071 5099 1 562912.704797418.70 0.00 +S 1071 5101 1 562953.704797447.30 0.00 +S 1071 5103 1 562994.604797476.00 0.00 +S 1071 5105 1 563035.604797504.70 0.00 +S 1071 5107 1 563076.604797533.40 0.00 +S 1071 5109 1 563117.504797562.00 0.00 +S 1071 5111 1 563158.504797590.70 0.00 +S 1071 5113 1 563199.404797619.40 0.00 +S 1071 5115 1 563240.404797648.10 0.00 +S 1071 5117 1 563281.304797676.80 0.00 +S 1071 5119 1 563322.304797705.40 0.00 +S 1071 5121 1 563363.304797734.10 0.00 +S 1071 5123 1 563404.204797762.80 0.00 +S 1071 5125 1 563445.204797791.50 0.00 +S 1071 5127 1 563486.104797820.20 0.00 +S 1071 5129 1 563527.104797848.80 0.00 +S 1071 5131 1 563568.004797877.50 0.00 +S 1071 5133 1 563609.004797906.20 0.00 +S 1071 5135 1 563650.004797934.90 0.00 +S 1073 4961 1 560115.304795398.90 0.00 +S 1073 4963 1 560156.304795427.50 0.00 +S 1073 4965 1 560197.204795456.20 0.00 +S 1073 4967 1 560238.204795484.90 0.00 +S 1073 4969 1 560279.204795513.60 0.00 +S 1073 4971 1 560320.104795542.30 0.00 +S 1073 4973 1 560361.104795570.90 0.00 +S 1073 4975 1 560402.004795599.60 0.00 +S 1073 4977 1 560443.004795628.30 0.00 +S 1073 4979 1 560483.904795657.00 0.00 +S 1073 4981 1 560524.904795685.60 0.00 +S 1073 4983 1 560565.904795714.30 0.00 +S 1073 4985 1 560606.804795743.00 0.00 +S 1073 4987 1 560647.804795771.70 0.00 +S 1073 4989 1 560688.704795800.40 0.00 +S 1073 4991 1 560729.704795829.00 0.00 +S 1073 4993 1 560770.704795857.70 0.00 +S 1073 4995 1 560811.604795886.40 0.00 +S 1073 4997 1 560852.604795915.10 0.00 +S 1073 4999 1 560893.504795943.80 0.00 +S 1073 5001 1 560934.504795972.40 0.00 +S 1073 5003 1 560975.404796001.10 0.00 +S 1073 5005 1 561016.404796029.80 0.00 +S 1073 5007 1 561057.404796058.50 0.00 +S 1073 5009 1 561098.304796087.10 0.00 +S 1073 5011 1 561139.304796115.80 0.00 +S 1073 5013 1 561180.204796144.50 0.00 +S 1073 5015 1 561221.204796173.20 0.00 +S 1073 5017 1 561262.104796201.90 0.00 +S 1073 5019 1 561303.104796230.50 0.00 +S 1073 5021 1 561344.104796259.20 0.00 +S 1073 5023 1 561385.004796287.90 0.00 +S 1073 5025 1 561426.004796316.60 0.00 +S 1073 5027 1 561466.904796345.30 0.00 +S 1073 5029 1 561507.904796373.90 0.00 +S 1073 5031 1 561548.804796402.60 0.00 +S 1073 5033 1 561589.804796431.30 0.00 +S 1073 5035 1 561630.804796460.00 0.00 +S 1073 5037 1 561671.704796488.70 0.00 +S 1073 5039 1 561712.704796517.30 0.00 +S 1073 5041 1 561753.604796546.00 0.00 +S 1073 5043 1 561794.604796574.70 0.00 +S 1073 5045 1 561835.504796603.40 0.00 +S 1073 5047 1 561876.504796632.00 0.00 +S 1073 5049 1 561917.504796660.70 0.00 +S 1073 5051 1 561958.404796689.40 0.00 +S 1073 5053 1 561999.404796718.10 0.00 +S 1073 5055 1 562040.304796746.80 0.00 +S 1073 5057 1 562081.304796775.40 0.00 +S 1073 5059 1 562122.304796804.10 0.00 +S 1073 5061 1 562163.204796832.80 0.00 +S 1073 5063 1 562204.204796861.50 0.00 +S 1073 5065 1 562245.104796890.20 0.00 +S 1073 5067 1 562286.104796918.80 0.00 +S 1073 5069 1 562327.004796947.50 0.00 +S 1073 5071 1 562368.004796976.20 0.00 +S 1073 5073 1 562409.004797004.90 0.00 +S 1073 5075 1 562449.904797033.60 0.00 +S 1073 5077 1 562490.904797062.20 0.00 +S 1073 5079 1 562531.804797090.90 0.00 +S 1073 5081 1 562572.804797119.60 0.00 +S 1073 5083 1 562613.704797148.30 0.00 +S 1073 5085 1 562654.704797176.90 0.00 +S 1073 5087 1 562695.704797205.60 0.00 +S 1073 5089 1 562736.604797234.30 0.00 +S 1073 5091 1 562777.604797263.00 0.00 +S 1073 5093 1 562818.504797291.70 0.00 +S 1073 5095 1 562859.504797320.30 0.00 +S 1073 5097 1 562900.404797349.00 0.00 +S 1073 5099 1 562941.404797377.70 0.00 +S 1073 5101 1 562982.404797406.40 0.00 +S 1073 5103 1 563023.304797435.10 0.00 +S 1073 5105 1 563064.304797463.70 0.00 +S 1073 5107 1 563105.204797492.40 0.00 +S 1073 5109 1 563146.204797521.10 0.00 +S 1073 5111 1 563187.104797549.80 0.00 +S 1073 5113 1 563228.104797578.40 0.00 +S 1073 5115 1 563269.104797607.10 0.00 +S 1073 5117 1 563310.004797635.80 0.00 +S 1073 5119 1 563351.004797664.50 0.00 +S 1073 5121 1 563391.904797693.20 0.00 +S 1073 5123 1 563432.904797721.80 0.00 +S 1073 5125 1 563473.904797750.50 0.00 +S 1073 5127 1 563514.804797779.20 0.00 +S 1073 5129 1 563555.804797807.90 0.00 +S 1073 5131 1 563596.704797836.60 0.00 +S 1073 5133 1 563637.704797865.20 0.00 +S 1073 5135 1 563678.604797893.90 0.00 +S 1075 4961 1 560144.004795357.90 0.00 +S 1075 4963 1 560185.004795386.60 0.00 +S 1075 4965 1 560225.904795415.30 0.00 +S 1075 4967 1 560266.904795443.90 0.00 +S 1075 4969 1 560307.804795472.60 0.00 +S 1075 4971 1 560348.804795501.30 0.00 +S 1075 4973 1 560389.804795530.00 0.00 +S 1075 4975 1 560430.704795558.70 0.00 +S 1075 4977 1 560471.704795587.30 0.00 +S 1075 4979 1 560512.604795616.00 0.00 +S 1075 4981 1 560553.604795644.70 0.00 +S 1075 4983 1 560594.504795673.40 0.00 +S 1075 4985 1 560635.504795702.00 0.00 +S 1075 4987 1 560676.504795730.70 0.00 +S 1075 4989 1 560717.404795759.40 0.00 +S 1075 4991 1 560758.404795788.10 0.00 +S 1075 4993 1 560799.304795816.80 0.00 +S 1075 4995 1 560840.304795845.40 0.00 +S 1075 4997 1 560881.204795874.10 0.00 +S 1075 4999 1 560922.204795902.80 0.00 +S 1075 5001 1 560963.204795931.50 0.00 +S 1075 5003 1 561004.104795960.20 0.00 +S 1075 5005 1 561045.104795988.80 0.00 +S 1075 5007 1 561086.004796017.50 0.00 +S 1075 5009 1 561127.004796046.20 0.00 +S 1075 5011 1 561167.904796074.90 0.00 +S 1075 5013 1 561208.904796103.50 0.00 +S 1075 5015 1 561249.904796132.20 0.00 +S 1075 5017 1 561290.804796160.90 0.00 +S 1075 5019 1 561331.804796189.60 0.00 +S 1075 5021 1 561372.704796218.30 0.00 +S 1075 5023 1 561413.704796246.90 0.00 +S 1075 5025 1 561454.704796275.60 0.00 +S 1075 5027 1 561495.604796304.30 0.00 +S 1075 5029 1 561536.604796333.00 0.00 +S 1075 5031 1 561577.504796361.70 0.00 +S 1075 5033 1 561618.504796390.30 0.00 +S 1075 5035 1 561659.404796419.00 0.00 +S 1075 5037 1 561700.404796447.70 0.00 +S 1075 5039 1 561741.404796476.40 0.00 +S 1075 5041 1 561782.304796505.10 0.00 +S 1075 5043 1 561823.304796533.70 0.00 +S 1075 5045 1 561864.204796562.40 0.00 +S 1075 5047 1 561905.204796591.10 0.00 +S 1075 5049 1 561946.104796619.80 0.00 +S 1075 5051 1 561987.104796648.40 0.00 +S 1075 5053 1 562028.104796677.10 0.00 +S 1075 5055 1 562069.004796705.80 0.00 +S 1075 5057 1 562110.004796734.50 0.00 +S 1075 5059 1 562150.904796763.20 0.00 +S 1075 5061 1 562191.904796791.80 0.00 +S 1075 5063 1 562232.804796820.50 0.00 +S 1075 5065 1 562273.804796849.20 0.00 +S 1075 5067 1 562314.804796877.90 0.00 +S 1075 5069 1 562355.704796906.60 0.00 +S 1075 5071 1 562396.704796935.20 0.00 +S 1075 5073 1 562437.604796963.90 0.00 +S 1075 5075 1 562478.604796992.60 0.00 +S 1075 5077 1 562519.504797021.30 0.00 +S 1075 5079 1 562560.504797050.00 0.00 +S 1075 5081 1 562601.504797078.60 0.00 +S 1075 5083 1 562642.404797107.30 0.00 +S 1075 5085 1 562683.404797136.00 0.00 +S 1075 5087 1 562724.304797164.70 0.00 +S 1075 5089 1 562765.304797193.30 0.00 +S 1075 5091 1 562806.304797222.00 0.00 +S 1075 5093 1 562847.204797250.70 0.00 +S 1075 5095 1 562888.204797279.40 0.00 +S 1075 5097 1 562929.104797308.10 0.00 +S 1075 5099 1 562970.104797336.70 0.00 +S 1075 5101 1 563011.004797365.40 0.00 +S 1075 5103 1 563052.004797394.10 0.00 +S 1075 5105 1 563093.004797422.80 0.00 +S 1075 5107 1 563133.904797451.50 0.00 +S 1075 5109 1 563174.904797480.10 0.00 +S 1075 5111 1 563215.804797508.80 0.00 +S 1075 5113 1 563256.804797537.50 0.00 +S 1075 5115 1 563297.704797566.20 0.00 +S 1075 5117 1 563338.704797594.80 0.00 +S 1075 5119 1 563379.704797623.50 0.00 +S 1075 5121 1 563420.604797652.20 0.00 +S 1075 5123 1 563461.604797680.90 0.00 +S 1075 5125 1 563502.504797709.60 0.00 +S 1075 5127 1 563543.504797738.20 0.00 +S 1075 5129 1 563584.404797766.90 0.00 +S 1075 5131 1 563625.404797795.60 0.00 +S 1075 5133 1 563666.404797824.30 0.00 +S 1075 5135 1 563707.304797853.00 0.00 +S 1077 4961 1 560172.704795316.90 0.00 +S 1077 4963 1 560213.604795345.60 0.00 +S 1077 4965 1 560254.604795374.30 0.00 +S 1077 4967 1 560295.604795403.00 0.00 +S 1077 4969 1 560336.504795431.70 0.00 +S 1077 4971 1 560377.504795460.30 0.00 +S 1077 4973 1 560418.404795489.00 0.00 +S 1077 4975 1 560459.404795517.70 0.00 +S 1077 4977 1 560500.304795546.40 0.00 +S 1077 4979 1 560541.304795575.10 0.00 +S 1077 4981 1 560582.304795603.70 0.00 +S 1077 4983 1 560623.204795632.40 0.00 +S 1077 4985 1 560664.204795661.10 0.00 +S 1077 4987 1 560705.104795689.80 0.00 +S 1077 4989 1 560746.104795718.40 0.00 +S 1077 4991 1 560787.104795747.10 0.00 +S 1077 4993 1 560828.004795775.80 0.00 +S 1077 4995 1 560869.004795804.50 0.00 +S 1077 4997 1 560909.904795833.20 0.00 +S 1077 4999 1 560950.904795861.80 0.00 +S 1077 5001 1 560991.804795890.50 0.00 +S 1077 5003 1 561032.804795919.20 0.00 +S 1077 5005 1 561073.804795947.90 0.00 +S 1077 5007 1 561114.704795976.60 0.00 +S 1077 5009 1 561155.704796005.20 0.00 +S 1077 5011 1 561196.604796033.90 0.00 +S 1077 5013 1 561237.604796062.60 0.00 +S 1077 5015 1 561278.504796091.30 0.00 +S 1077 5017 1 561319.504796119.90 0.00 +S 1077 5019 1 561360.504796148.60 0.00 +S 1077 5021 1 561401.404796177.30 0.00 +S 1077 5023 1 561442.404796206.00 0.00 +S 1077 5025 1 561483.304796234.70 0.00 +S 1077 5027 1 561524.304796263.30 0.00 +S 1077 5029 1 561565.204796292.00 0.00 +S 1077 5031 1 561606.204796320.70 0.00 +S 1077 5033 1 561647.204796349.40 0.00 +S 1077 5035 1 561688.104796378.10 0.00 +S 1077 5037 1 561729.104796406.70 0.00 +S 1077 5039 1 561770.004796435.40 0.00 +S 1077 5041 1 561811.004796464.10 0.00 +S 1077 5043 1 561851.904796492.80 0.00 +S 1077 5045 1 561892.904796521.50 0.00 +S 1077 5047 1 561933.904796550.10 0.00 +S 1077 5049 1 561974.804796578.80 0.00 +S 1077 5051 1 562015.804796607.50 0.00 +S 1077 5053 1 562056.704796636.20 0.00 +S 1077 5055 1 562097.704796664.80 0.00 +S 1077 5057 1 562138.704796693.50 0.00 +S 1077 5059 1 562179.604796722.20 0.00 +S 1077 5061 1 562220.604796750.90 0.00 +S 1077 5063 1 562261.504796779.60 0.00 +S 1077 5065 1 562302.504796808.20 0.00 +S 1077 5067 1 562343.404796836.90 0.00 +S 1077 5069 1 562384.404796865.60 0.00 +S 1077 5071 1 562425.404796894.30 0.00 +S 1077 5073 1 562466.304796923.00 0.00 +S 1077 5075 1 562507.304796951.60 0.00 +S 1077 5077 1 562548.204796980.30 0.00 +S 1077 5079 1 562589.204797009.00 0.00 +S 1077 5081 1 562630.104797037.70 0.00 +S 1077 5083 1 562671.104797066.40 0.00 +S 1077 5085 1 562712.104797095.00 0.00 +S 1077 5087 1 562753.004797123.70 0.00 +S 1077 5089 1 562794.004797152.40 0.00 +S 1077 5091 1 562834.904797181.10 0.00 +S 1077 5093 1 562875.904797209.70 0.00 +S 1077 5095 1 562916.804797238.40 0.00 +S 1077 5097 1 562957.804797267.10 0.00 +S 1077 5099 1 562998.804797295.80 0.00 +S 1077 5101 1 563039.704797324.50 0.00 +S 1077 5103 1 563080.704797353.10 0.00 +S 1077 5105 1 563121.604797381.80 0.00 +S 1077 5107 1 563162.604797410.50 0.00 +S 1077 5109 1 563203.504797439.20 0.00 +S 1077 5111 1 563244.504797467.90 0.00 +S 1077 5113 1 563285.504797496.50 0.00 +S 1077 5115 1 563326.404797525.20 0.00 +S 1077 5117 1 563367.404797553.90 0.00 +S 1077 5119 1 563408.304797582.60 0.00 +S 1077 5121 1 563449.304797611.20 0.00 +S 1077 5123 1 563490.304797639.90 0.00 +S 1077 5125 1 563531.204797668.60 0.00 +S 1077 5127 1 563572.204797697.30 0.00 +S 1077 5129 1 563613.104797726.00 0.00 +S 1077 5131 1 563654.104797754.60 0.00 +S 1077 5133 1 563695.004797783.30 0.00 +S 1077 5135 1 563736.004797812.00 0.00 +S 1079 4961 1 560201.404795276.00 0.00 +S 1079 4963 1 560242.304795304.70 0.00 +S 1079 4965 1 560283.304795333.30 0.00 +S 1079 4967 1 560324.204795362.00 0.00 +S 1079 4969 1 560365.204795390.70 0.00 +S 1079 4971 1 560406.204795419.40 0.00 +S 1079 4973 1 560447.104795448.10 0.00 +S 1079 4975 1 560488.104795476.70 0.00 +S 1079 4977 1 560529.004795505.40 0.00 +S 1079 4979 1 560570.004795534.10 0.00 +S 1079 4981 1 560610.904795562.80 0.00 +S 1079 4983 1 560651.904795591.50 0.00 +S 1079 4985 1 560692.904795620.10 0.00 +S 1079 4987 1 560733.804795648.80 0.00 +S 1079 4989 1 560774.804795677.50 0.00 +S 1079 4991 1 560815.704795706.20 0.00 +S 1079 4993 1 560856.704795734.80 0.00 +S 1079 4995 1 560897.604795763.50 0.00 +S 1079 4997 1 560938.604795792.20 0.00 +S 1079 4999 1 560979.604795820.90 0.00 +S 1079 5001 1 561020.504795849.60 0.00 +S 1079 5003 1 561061.504795878.20 0.00 +S 1079 5005 1 561102.404795906.90 0.00 +S 1079 5007 1 561143.404795935.60 0.00 +S 1079 5009 1 561184.304795964.30 0.00 +S 1079 5011 1 561225.304795993.00 0.00 +S 1079 5013 1 561266.304796021.60 0.00 +S 1079 5015 1 561307.204796050.30 0.00 +S 1079 5017 1 561348.204796079.00 0.00 +S 1079 5019 1 561389.104796107.70 0.00 +S 1079 5021 1 561430.104796136.30 0.00 +S 1079 5023 1 561471.104796165.00 0.00 +S 1079 5025 1 561512.004796193.70 0.00 +S 1079 5027 1 561553.004796222.40 0.00 +S 1079 5029 1 561593.904796251.10 0.00 +S 1079 5031 1 561634.904796279.70 0.00 +S 1079 5033 1 561675.804796308.40 0.00 +S 1079 5035 1 561716.804796337.10 0.00 +S 1079 5037 1 561757.804796365.80 0.00 +S 1079 5039 1 561798.704796394.50 0.00 +S 1079 5041 1 561839.704796423.10 0.00 +S 1079 5043 1 561880.604796451.80 0.00 +S 1079 5045 1 561921.604796480.50 0.00 +S 1079 5047 1 561962.504796509.20 0.00 +S 1079 5049 1 562003.504796537.90 0.00 +S 1079 5051 1 562044.504796566.50 0.00 +S 1079 5053 1 562085.404796595.20 0.00 +S 1079 5055 1 562126.404796623.90 0.00 +S 1079 5057 1 562167.304796652.60 0.00 +S 1079 5059 1 562208.304796681.20 0.00 +S 1079 5061 1 562249.204796709.90 0.00 +S 1079 5063 1 562290.204796738.60 0.00 +S 1079 5065 1 562331.204796767.30 0.00 +S 1079 5067 1 562372.104796796.00 0.00 +S 1079 5069 1 562413.104796824.60 0.00 +S 1079 5071 1 562454.004796853.30 0.00 +S 1079 5073 1 562495.004796882.00 0.00 +S 1079 5075 1 562535.904796910.70 0.00 +S 1079 5077 1 562576.904796939.40 0.00 +S 1079 5079 1 562617.904796968.00 0.00 +S 1079 5081 1 562658.804796996.70 0.00 +S 1079 5083 1 562699.804797025.40 0.00 +S 1079 5085 1 562740.704797054.10 0.00 +S 1079 5087 1 562781.704797082.80 0.00 +S 1079 5089 1 562822.704797111.40 0.00 +S 1079 5091 1 562863.604797140.10 0.00 +S 1079 5093 1 562904.604797168.80 0.00 +S 1079 5095 1 562945.504797197.50 0.00 +S 1079 5097 1 562986.504797226.10 0.00 +S 1079 5099 1 563027.404797254.80 0.00 +S 1079 5101 1 563068.404797283.50 0.00 +S 1079 5103 1 563109.404797312.20 0.00 +S 1079 5105 1 563150.304797340.90 0.00 +S 1079 5107 1 563191.304797369.50 0.00 +S 1079 5109 1 563232.204797398.20 0.00 +S 1079 5111 1 563273.204797426.90 0.00 +S 1079 5113 1 563314.104797455.60 0.00 +S 1079 5115 1 563355.104797484.30 0.00 +S 1079 5117 1 563396.104797512.90 0.00 +S 1079 5119 1 563437.004797541.60 0.00 +S 1079 5121 1 563478.004797570.30 0.00 +S 1079 5123 1 563518.904797599.00 0.00 +S 1079 5125 1 563559.904797627.60 0.00 +S 1079 5127 1 563600.804797656.30 0.00 +S 1079 5129 1 563641.804797685.00 0.00 +S 1079 5131 1 563682.804797713.70 0.00 +S 1079 5133 1 563723.704797742.40 0.00 +S 1079 5135 1 563764.704797771.00 0.00 +S 1081 4961 1 560230.004795235.00 0.00 +S 1081 4963 1 560271.004795263.70 0.00 +S 1081 4965 1 560312.004795292.40 0.00 +S 1081 4967 1 560352.904795321.10 0.00 +S 1081 4969 1 560393.904795349.70 0.00 +S 1081 4971 1 560434.804795378.40 0.00 +S 1081 4973 1 560475.804795407.10 0.00 +S 1081 4975 1 560516.704795435.80 0.00 +S 1081 4977 1 560557.704795464.50 0.00 +S 1081 4979 1 560598.704795493.10 0.00 +S 1081 4981 1 560639.604795521.80 0.00 +S 1081 4983 1 560680.604795550.50 0.00 +S 1081 4985 1 560721.504795579.20 0.00 +S 1081 4987 1 560762.504795607.90 0.00 +S 1081 4989 1 560803.504795636.50 0.00 +S 1081 4991 1 560844.404795665.20 0.00 +S 1081 4993 1 560885.404795693.90 0.00 +S 1081 4995 1 560926.304795722.60 0.00 +S 1081 4997 1 560967.304795751.20 0.00 +S 1081 4999 1 561008.204795779.90 0.00 +S 1081 5001 1 561049.204795808.60 0.00 +S 1081 5003 1 561090.204795837.30 0.00 +S 1081 5005 1 561131.104795866.00 0.00 +S 1081 5007 1 561172.104795894.60 0.00 +S 1081 5009 1 561213.004795923.30 0.00 +S 1081 5011 1 561254.004795952.00 0.00 +S 1081 5013 1 561294.904795980.70 0.00 +S 1081 5015 1 561335.904796009.40 0.00 +S 1081 5017 1 561376.904796038.00 0.00 +S 1081 5019 1 561417.804796066.70 0.00 +S 1081 5021 1 561458.804796095.40 0.00 +S 1081 5023 1 561499.704796124.10 0.00 +S 1081 5025 1 561540.704796152.70 0.00 +S 1081 5027 1 561581.604796181.40 0.00 +S 1081 5029 1 561622.604796210.10 0.00 +S 1081 5031 1 561663.604796238.80 0.00 +S 1081 5033 1 561704.504796267.50 0.00 +S 1081 5035 1 561745.504796296.10 0.00 +S 1081 5037 1 561786.404796324.80 0.00 +S 1081 5039 1 561827.404796353.50 0.00 +S 1081 5041 1 561868.304796382.20 0.00 +S 1081 5043 1 561909.304796410.90 0.00 +S 1081 5045 1 561950.304796439.50 0.00 +S 1081 5047 1 561991.204796468.20 0.00 +S 1081 5049 1 562032.204796496.90 0.00 +S 1081 5051 1 562073.104796525.60 0.00 +S 1081 5053 1 562114.104796554.30 0.00 +S 1081 5055 1 562155.104796582.90 0.00 +S 1081 5057 1 562196.004796611.60 0.00 +S 1081 5059 1 562237.004796640.30 0.00 +S 1081 5061 1 562277.904796669.00 0.00 +S 1081 5063 1 562318.904796697.60 0.00 +S 1081 5065 1 562359.804796726.30 0.00 +S 1081 5067 1 562400.804796755.00 0.00 +S 1081 5069 1 562441.804796783.70 0.00 +S 1081 5071 1 562482.704796812.40 0.00 +S 1081 5073 1 562523.704796841.00 0.00 +S 1081 5075 1 562564.604796869.70 0.00 +S 1081 5077 1 562605.604796898.40 0.00 +S 1081 5079 1 562646.504796927.10 0.00 +S 1081 5081 1 562687.504796955.80 0.00 +S 1081 5083 1 562728.504796984.40 0.00 +S 1081 5085 1 562769.404797013.10 0.00 +S 1081 5087 1 562810.404797041.80 0.00 +S 1081 5089 1 562851.304797070.50 0.00 +S 1081 5091 1 562892.304797099.20 0.00 +S 1081 5093 1 562933.204797127.80 0.00 +S 1081 5095 1 562974.204797156.50 0.00 +S 1081 5097 1 563015.204797185.20 0.00 +S 1081 5099 1 563056.104797213.90 0.00 +S 1081 5101 1 563097.104797242.50 0.00 +S 1081 5103 1 563138.004797271.20 0.00 +S 1081 5105 1 563179.004797299.90 0.00 +S 1081 5107 1 563219.904797328.60 0.00 +S 1081 5109 1 563260.904797357.30 0.00 +S 1081 5111 1 563301.904797385.90 0.00 +S 1081 5113 1 563342.804797414.60 0.00 +S 1081 5115 1 563383.804797443.30 0.00 +S 1081 5117 1 563424.704797472.00 0.00 +S 1081 5119 1 563465.704797500.70 0.00 +S 1081 5121 1 563506.704797529.30 0.00 +S 1081 5123 1 563547.604797558.00 0.00 +S 1081 5125 1 563588.604797586.70 0.00 +S 1081 5127 1 563629.504797615.40 0.00 +S 1081 5129 1 563670.504797644.00 0.00 +S 1081 5131 1 563711.404797672.70 0.00 +S 1081 5133 1 563752.404797701.40 0.00 +S 1081 5135 1 563793.404797730.10 0.00 +S 1083 4961 1 560258.704795194.10 0.00 +S 1083 4963 1 560299.704795222.70 0.00 +S 1083 4965 1 560340.604795251.40 0.00 +S 1083 4967 1 560381.604795280.10 0.00 +S 1083 4969 1 560422.604795308.80 0.00 +S 1083 4971 1 560463.504795337.50 0.00 +S 1083 4973 1 560504.504795366.10 0.00 +S 1083 4975 1 560545.404795394.80 0.00 +S 1083 4977 1 560586.404795423.50 0.00 +S 1083 4979 1 560627.304795452.20 0.00 +S 1083 4981 1 560668.304795480.90 0.00 +S 1083 4983 1 560709.304795509.50 0.00 +S 1083 4985 1 560750.204795538.20 0.00 +S 1083 4987 1 560791.204795566.90 0.00 +S 1083 4989 1 560832.104795595.60 0.00 +S 1083 4991 1 560873.104795624.30 0.00 +S 1083 4993 1 560914.004795652.90 0.00 +S 1083 4995 1 560955.004795681.60 0.00 +S 1083 4997 1 560996.004795710.30 0.00 +S 1083 4999 1 561036.904795739.00 0.00 +S 1083 5001 1 561077.904795767.60 0.00 +S 1083 5003 1 561118.804795796.30 0.00 +S 1083 5005 1 561159.804795825.00 0.00 +S 1083 5007 1 561200.704795853.70 0.00 +S 1083 5009 1 561241.704795882.40 0.00 +S 1083 5011 1 561282.704795911.00 0.00 +S 1083 5013 1 561323.604795939.70 0.00 +S 1083 5015 1 561364.604795968.40 0.00 +S 1083 5017 1 561405.504795997.10 0.00 +S 1083 5019 1 561446.504796025.80 0.00 +S 1083 5021 1 561487.504796054.40 0.00 +S 1083 5023 1 561528.404796083.10 0.00 +S 1083 5025 1 561569.404796111.80 0.00 +S 1083 5027 1 561610.304796140.50 0.00 +S 1083 5029 1 561651.304796169.10 0.00 +S 1083 5031 1 561692.204796197.80 0.00 +S 1083 5033 1 561733.204796226.50 0.00 +S 1083 5035 1 561774.204796255.20 0.00 +S 1083 5037 1 561815.104796283.90 0.00 +S 1083 5039 1 561856.104796312.50 0.00 +S 1083 5041 1 561897.004796341.20 0.00 +S 1083 5043 1 561938.004796369.90 0.00 +S 1083 5045 1 561978.904796398.60 0.00 +S 1083 5047 1 562019.904796427.30 0.00 +S 1083 5049 1 562060.904796455.90 0.00 +S 1083 5051 1 562101.804796484.60 0.00 +S 1083 5053 1 562142.804796513.30 0.00 +S 1083 5055 1 562183.704796542.00 0.00 +S 1083 5057 1 562224.704796570.70 0.00 +S 1083 5059 1 562265.604796599.30 0.00 +S 1083 5061 1 562306.604796628.00 0.00 +S 1083 5063 1 562347.604796656.70 0.00 +S 1083 5065 1 562388.504796685.40 0.00 +S 1083 5067 1 562429.504796714.00 0.00 +S 1083 5069 1 562470.404796742.70 0.00 +S 1083 5071 1 562511.404796771.40 0.00 +S 1083 5073 1 562552.304796800.10 0.00 +S 1083 5075 1 562593.304796828.80 0.00 +S 1083 5077 1 562634.304796857.40 0.00 +S 1083 5079 1 562675.204796886.10 0.00 +S 1083 5081 1 562716.204796914.80 0.00 +S 1083 5083 1 562757.104796943.50 0.00 +S 1083 5085 1 562798.104796972.20 0.00 +S 1083 5087 1 562839.104797000.80 0.00 +S 1083 5089 1 562880.004797029.50 0.00 +S 1083 5091 1 562921.004797058.20 0.00 +S 1083 5093 1 562961.904797086.90 0.00 +S 1083 5095 1 563002.904797115.60 0.00 +S 1083 5097 1 563043.804797144.20 0.00 +S 1083 5099 1 563084.804797172.90 0.00 +S 1083 5101 1 563125.804797201.60 0.00 +S 1083 5103 1 563166.704797230.30 0.00 +S 1083 5105 1 563207.704797258.90 0.00 +S 1083 5107 1 563248.604797287.60 0.00 +S 1083 5109 1 563289.604797316.30 0.00 +S 1083 5111 1 563330.504797345.00 0.00 +S 1083 5113 1 563371.504797373.70 0.00 +S 1083 5115 1 563412.504797402.30 0.00 +S 1083 5117 1 563453.404797431.00 0.00 +S 1083 5119 1 563494.404797459.70 0.00 +S 1083 5121 1 563535.304797488.40 0.00 +S 1083 5123 1 563576.304797517.10 0.00 +S 1083 5125 1 563617.204797545.70 0.00 +S 1083 5127 1 563658.204797574.40 0.00 +S 1083 5129 1 563699.204797603.10 0.00 +S 1083 5131 1 563740.104797631.80 0.00 +S 1083 5133 1 563781.104797660.40 0.00 +S 1083 5135 1 563822.004797689.10 0.00 +S 1085 4961 1 560287.404795153.10 0.00 +S 1085 4963 1 560328.404795181.80 0.00 +S 1085 4965 1 560369.304795210.50 0.00 +S 1085 4967 1 560410.304795239.10 0.00 +S 1085 4969 1 560451.204795267.80 0.00 +S 1085 4971 1 560492.204795296.50 0.00 +S 1085 4973 1 560533.104795325.20 0.00 +S 1085 4975 1 560574.104795353.90 0.00 +S 1085 4977 1 560615.104795382.50 0.00 +S 1085 4979 1 560656.004795411.20 0.00 +S 1085 4981 1 560697.004795439.90 0.00 +S 1085 4983 1 560737.904795468.60 0.00 +S 1085 4985 1 560778.904795497.30 0.00 +S 1085 4987 1 560819.904795525.90 0.00 +S 1085 4989 1 560860.804795554.60 0.00 +S 1085 4991 1 560901.804795583.30 0.00 +S 1085 4993 1 560942.704795612.00 0.00 +S 1085 4995 1 560983.704795640.70 0.00 +S 1085 4997 1 561024.604795669.30 0.00 +S 1085 4999 1 561065.604795698.00 0.00 +S 1085 5001 1 561106.604795726.70 0.00 +S 1085 5003 1 561147.504795755.40 0.00 +S 1085 5005 1 561188.504795784.00 0.00 +S 1085 5007 1 561229.404795812.70 0.00 +S 1085 5009 1 561270.404795841.40 0.00 +S 1085 5011 1 561311.304795870.10 0.00 +S 1085 5013 1 561352.304795898.80 0.00 +S 1085 5015 1 561393.304795927.40 0.00 +S 1085 5017 1 561434.204795956.10 0.00 +S 1085 5019 1 561475.204795984.80 0.00 +S 1085 5021 1 561516.104796013.50 0.00 +S 1085 5023 1 561557.104796042.20 0.00 +S 1085 5025 1 561598.004796070.80 0.00 +S 1085 5027 1 561639.004796099.50 0.00 +S 1085 5029 1 561680.004796128.20 0.00 +S 1085 5031 1 561720.904796156.90 0.00 +S 1085 5033 1 561761.904796185.50 0.00 +S 1085 5035 1 561802.804796214.20 0.00 +S 1085 5037 1 561843.804796242.90 0.00 +S 1085 5039 1 561884.704796271.60 0.00 +S 1085 5041 1 561925.704796300.30 0.00 +S 1085 5043 1 561966.704796328.90 0.00 +S 1085 5045 1 562007.604796357.60 0.00 +S 1085 5047 1 562048.604796386.30 0.00 +S 1085 5049 1 562089.504796415.00 0.00 +S 1085 5051 1 562130.504796443.70 0.00 +S 1085 5053 1 562171.504796472.30 0.00 +S 1085 5055 1 562212.404796501.00 0.00 +S 1085 5057 1 562253.404796529.70 0.00 +S 1085 5059 1 562294.304796558.40 0.00 +S 1085 5061 1 562335.304796587.10 0.00 +S 1085 5063 1 562376.204796615.70 0.00 +S 1085 5065 1 562417.204796644.40 0.00 +S 1085 5067 1 562458.204796673.10 0.00 +S 1085 5069 1 562499.104796701.80 0.00 +S 1085 5071 1 562540.104796730.40 0.00 +S 1085 5073 1 562581.004796759.10 0.00 +S 1085 5075 1 562622.004796787.80 0.00 +S 1085 5077 1 562662.904796816.50 0.00 +S 1085 5079 1 562703.904796845.20 0.00 +S 1085 5081 1 562744.904796873.80 0.00 +S 1085 5083 1 562785.804796902.50 0.00 +S 1085 5085 1 562826.804796931.20 0.00 +S 1085 5087 1 562867.704796959.90 0.00 +S 1085 5089 1 562908.704796988.60 0.00 +S 1085 5091 1 562949.604797017.20 0.00 +S 1085 5093 1 562990.604797045.90 0.00 +S 1085 5095 1 563031.604797074.60 0.00 +S 1085 5097 1 563072.504797103.30 0.00 +S 1085 5099 1 563113.504797132.00 0.00 +S 1085 5101 1 563154.404797160.60 0.00 +S 1085 5103 1 563195.404797189.30 0.00 +S 1085 5105 1 563236.304797218.00 0.00 +S 1085 5107 1 563277.304797246.70 0.00 +S 1085 5109 1 563318.304797275.30 0.00 +S 1085 5111 1 563359.204797304.00 0.00 +S 1085 5113 1 563400.204797332.70 0.00 +S 1085 5115 1 563441.104797361.40 0.00 +S 1085 5117 1 563482.104797390.10 0.00 +S 1085 5119 1 563523.104797418.70 0.00 +S 1085 5121 1 563564.004797447.40 0.00 +S 1085 5123 1 563605.004797476.10 0.00 +S 1085 5125 1 563645.904797504.80 0.00 +S 1085 5127 1 563686.904797533.50 0.00 +S 1085 5129 1 563727.804797562.10 0.00 +S 1085 5131 1 563768.804797590.80 0.00 +S 1085 5133 1 563809.804797619.50 0.00 +S 1085 5135 1 563850.704797648.20 0.00 +S 1087 4961 1 560316.104795112.20 0.00 +S 1087 4963 1 560357.004795140.80 0.00 +S 1087 4965 1 560398.004795169.50 0.00 +S 1087 4967 1 560439.004795198.20 0.00 +S 1087 4969 1 560479.904795226.90 0.00 +S 1087 4971 1 560520.904795255.50 0.00 +S 1087 4973 1 560561.804795284.20 0.00 +S 1087 4975 1 560602.804795312.90 0.00 +S 1087 4977 1 560643.704795341.60 0.00 +S 1087 4979 1 560684.704795370.30 0.00 +S 1087 4981 1 560725.704795398.90 0.00 +S 1087 4983 1 560766.604795427.60 0.00 +S 1087 4985 1 560807.604795456.30 0.00 +S 1087 4987 1 560848.504795485.00 0.00 +S 1087 4989 1 560889.504795513.70 0.00 +S 1087 4991 1 560930.404795542.30 0.00 +S 1087 4993 1 560971.404795571.00 0.00 +S 1087 4995 1 561012.404795599.70 0.00 +S 1087 4997 1 561053.304795628.40 0.00 +S 1087 4999 1 561094.304795657.10 0.00 +S 1087 5001 1 561135.204795685.70 0.00 +S 1087 5003 1 561176.204795714.40 0.00 +S 1087 5005 1 561217.104795743.10 0.00 +S 1087 5007 1 561258.104795771.80 0.00 +S 1087 5009 1 561299.104795800.40 0.00 +S 1087 5011 1 561340.004795829.10 0.00 +S 1087 5013 1 561381.004795857.80 0.00 +S 1087 5015 1 561421.904795886.50 0.00 +S 1087 5017 1 561462.904795915.20 0.00 +S 1087 5019 1 561503.904795943.80 0.00 +S 1087 5021 1 561544.804795972.50 0.00 +S 1087 5023 1 561585.804796001.20 0.00 +S 1087 5025 1 561626.704796029.90 0.00 +S 1087 5027 1 561667.704796058.60 0.00 +S 1087 5029 1 561708.604796087.20 0.00 +S 1087 5031 1 561749.604796115.90 0.00 +S 1087 5033 1 561790.604796144.60 0.00 +S 1087 5035 1 561831.504796173.30 0.00 +S 1087 5037 1 561872.504796201.90 0.00 +S 1087 5039 1 561913.404796230.60 0.00 +S 1087 5041 1 561954.404796259.30 0.00 +S 1087 5043 1 561995.304796288.00 0.00 +S 1087 5045 1 562036.304796316.70 0.00 +S 1087 5047 1 562077.304796345.30 0.00 +S 1087 5049 1 562118.204796374.00 0.00 +S 1087 5051 1 562159.204796402.70 0.00 +S 1087 5053 1 562200.104796431.40 0.00 +S 1087 5055 1 562241.104796460.10 0.00 +S 1087 5057 1 562282.004796488.70 0.00 +S 1087 5059 1 562323.004796517.40 0.00 +S 1087 5061 1 562364.004796546.10 0.00 +S 1087 5063 1 562404.904796574.80 0.00 +S 1087 5065 1 562445.904796603.50 0.00 +S 1087 5067 1 562486.804796632.10 0.00 +S 1087 5069 1 562527.804796660.80 0.00 +S 1087 5071 1 562568.704796689.50 0.00 +S 1087 5073 1 562609.704796718.20 0.00 +S 1087 5075 1 562650.704796746.80 0.00 +S 1087 5077 1 562691.604796775.50 0.00 +S 1087 5079 1 562732.604796804.20 0.00 +S 1087 5081 1 562773.504796832.90 0.00 +S 1087 5083 1 562814.504796861.60 0.00 +S 1087 5085 1 562855.504796890.20 0.00 +S 1087 5087 1 562896.404796918.90 0.00 +S 1087 5089 1 562937.404796947.60 0.00 +S 1087 5091 1 562978.304796976.30 0.00 +S 1087 5093 1 563019.304797005.00 0.00 +S 1087 5095 1 563060.204797033.60 0.00 +S 1087 5097 1 563101.204797062.30 0.00 +S 1087 5099 1 563142.204797091.00 0.00 +S 1087 5101 1 563183.104797119.70 0.00 +S 1087 5103 1 563224.104797148.40 0.00 +S 1087 5105 1 563265.004797177.00 0.00 +S 1087 5107 1 563306.004797205.70 0.00 +S 1087 5109 1 563346.904797234.40 0.00 +S 1087 5111 1 563387.904797263.10 0.00 +S 1087 5113 1 563428.904797291.70 0.00 +S 1087 5115 1 563469.804797320.40 0.00 +S 1087 5117 1 563510.804797349.10 0.00 +S 1087 5119 1 563551.704797377.80 0.00 +S 1087 5121 1 563592.704797406.50 0.00 +S 1087 5123 1 563633.604797435.10 0.00 +S 1087 5125 1 563674.604797463.80 0.00 +S 1087 5127 1 563715.604797492.50 0.00 +S 1087 5129 1 563756.504797521.20 0.00 +S 1087 5131 1 563797.504797549.90 0.00 +S 1087 5133 1 563838.404797578.50 0.00 +S 1087 5135 1 563879.404797607.20 0.00 +S 1089 4961 1 560344.804795071.20 0.00 +S 1089 4963 1 560385.704795099.90 0.00 +S 1089 4965 1 560426.704795128.60 0.00 +S 1089 4967 1 560467.604795157.20 0.00 +S 1089 4969 1 560508.604795185.90 0.00 +S 1089 4971 1 560549.504795214.60 0.00 +S 1089 4973 1 560590.504795243.30 0.00 +S 1089 4975 1 560631.504795271.90 0.00 +S 1089 4977 1 560672.404795300.60 0.00 +S 1089 4979 1 560713.404795329.30 0.00 +S 1089 4981 1 560754.304795358.00 0.00 +S 1089 4983 1 560795.304795386.70 0.00 +S 1089 4985 1 560836.304795415.30 0.00 +S 1089 4987 1 560877.204795444.00 0.00 +S 1089 4989 1 560918.204795472.70 0.00 +S 1089 4991 1 560959.104795501.40 0.00 +S 1089 4993 1 561000.104795530.10 0.00 +S 1089 4995 1 561041.004795558.70 0.00 +S 1089 4997 1 561082.004795587.40 0.00 +S 1089 4999 1 561123.004795616.10 0.00 +S 1089 5001 1 561163.904795644.80 0.00 +S 1089 5003 1 561204.904795673.50 0.00 +S 1089 5005 1 561245.804795702.10 0.00 +S 1089 5007 1 561286.804795730.80 0.00 +S 1089 5009 1 561327.704795759.50 0.00 +S 1089 5011 1 561368.704795788.20 0.00 +S 1089 5013 1 561409.704795816.80 0.00 +S 1089 5015 1 561450.604795845.50 0.00 +S 1089 5017 1 561491.604795874.20 0.00 +S 1089 5019 1 561532.504795902.90 0.00 +S 1089 5021 1 561573.504795931.60 0.00 +S 1089 5023 1 561614.404795960.20 0.00 +S 1089 5025 1 561655.404795988.90 0.00 +S 1089 5027 1 561696.404796017.60 0.00 +S 1089 5029 1 561737.304796046.30 0.00 +S 1089 5031 1 561778.304796075.00 0.00 +S 1089 5033 1 561819.204796103.60 0.00 +S 1089 5035 1 561860.204796132.30 0.00 +S 1089 5037 1 561901.104796161.00 0.00 +S 1089 5039 1 561942.104796189.70 0.00 +S 1089 5041 1 561983.104796218.40 0.00 +S 1089 5043 1 562024.004796247.00 0.00 +S 1089 5045 1 562065.004796275.70 0.00 +S 1089 5047 1 562105.904796304.40 0.00 +S 1089 5049 1 562146.904796333.10 0.00 +S 1089 5051 1 562187.904796361.70 0.00 +S 1089 5053 1 562228.804796390.40 0.00 +S 1089 5055 1 562269.804796419.10 0.00 +S 1089 5057 1 562310.704796447.80 0.00 +S 1089 5059 1 562351.704796476.50 0.00 +S 1089 5061 1 562392.604796505.10 0.00 +S 1089 5063 1 562433.604796533.80 0.00 +S 1089 5065 1 562474.604796562.50 0.00 +S 1089 5067 1 562515.504796591.20 0.00 +S 1089 5069 1 562556.504796619.90 0.00 +S 1089 5071 1 562597.404796648.50 0.00 +S 1089 5073 1 562638.404796677.20 0.00 +S 1089 5075 1 562679.304796705.90 0.00 +S 1089 5077 1 562720.304796734.60 0.00 +S 1089 5079 1 562761.304796763.20 0.00 +S 1089 5081 1 562802.204796791.90 0.00 +S 1089 5083 1 562843.204796820.60 0.00 +S 1089 5085 1 562884.104796849.30 0.00 +S 1089 5087 1 562925.104796878.00 0.00 +S 1089 5089 1 562966.004796906.60 0.00 +S 1089 5091 1 563007.004796935.30 0.00 +S 1089 5093 1 563048.004796964.00 0.00 +S 1089 5095 1 563088.904796992.70 0.00 +S 1089 5097 1 563129.904797021.40 0.00 +S 1089 5099 1 563170.804797050.00 0.00 +S 1089 5101 1 563211.804797078.70 0.00 +S 1089 5103 1 563252.704797107.40 0.00 +S 1089 5105 1 563293.704797136.10 0.00 +S 1089 5107 1 563334.704797164.80 0.00 +S 1089 5109 1 563375.604797193.40 0.00 +S 1089 5111 1 563416.604797222.10 0.00 +S 1089 5113 1 563457.504797250.80 0.00 +S 1089 5115 1 563498.504797279.50 0.00 +S 1089 5117 1 563539.504797308.10 0.00 +S 1089 5119 1 563580.404797336.80 0.00 +S 1089 5121 1 563621.404797365.50 0.00 +S 1089 5123 1 563662.304797394.20 0.00 +S 1089 5125 1 563703.304797422.90 0.00 +S 1089 5127 1 563744.204797451.50 0.00 +S 1089 5129 1 563785.204797480.20 0.00 +S 1089 5131 1 563826.204797508.90 0.00 +S 1089 5133 1 563867.104797537.60 0.00 +S 1089 5135 1 563908.104797566.30 0.00 +S 1091 4961 1 560373.404795030.20 0.00 +S 1091 4963 1 560414.404795058.90 0.00 +S 1091 4965 1 560455.404795087.60 0.00 +S 1091 4967 1 560496.304795116.30 0.00 +S 1091 4969 1 560537.304795145.00 0.00 +S 1091 4971 1 560578.204795173.60 0.00 +S 1091 4973 1 560619.204795202.30 0.00 +S 1091 4975 1 560660.104795231.00 0.00 +S 1091 4977 1 560701.104795259.70 0.00 +S 1091 4979 1 560742.104795288.30 0.00 +S 1091 4981 1 560783.004795317.00 0.00 +S 1091 4983 1 560824.004795345.70 0.00 +S 1091 4985 1 560864.904795374.40 0.00 +S 1091 4987 1 560905.904795403.10 0.00 +S 1091 4989 1 560946.804795431.70 0.00 +S 1091 4991 1 560987.804795460.40 0.00 +S 1091 4993 1 561028.804795489.10 0.00 +S 1091 4995 1 561069.704795517.80 0.00 +S 1091 4997 1 561110.704795546.50 0.00 +S 1091 4999 1 561151.604795575.10 0.00 +S 1091 5001 1 561192.604795603.80 0.00 +S 1091 5003 1 561233.504795632.50 0.00 +S 1091 5005 1 561274.504795661.20 0.00 +S 1091 5007 1 561315.504795689.90 0.00 +S 1091 5009 1 561356.404795718.50 0.00 +S 1091 5011 1 561397.404795747.20 0.00 +S 1091 5013 1 561438.304795775.90 0.00 +S 1091 5015 1 561479.304795804.60 0.00 +S 1091 5017 1 561520.304795833.20 0.00 +S 1091 5019 1 561561.204795861.90 0.00 +S 1091 5021 1 561602.204795890.60 0.00 +S 1091 5023 1 561643.104795919.30 0.00 +S 1091 5025 1 561684.104795948.00 0.00 +S 1091 5027 1 561725.004795976.60 0.00 +S 1091 5029 1 561766.004796005.30 0.00 +S 1091 5031 1 561807.004796034.00 0.00 +S 1091 5033 1 561847.904796062.70 0.00 +S 1091 5035 1 561888.904796091.40 0.00 +S 1091 5037 1 561929.804796120.00 0.00 +S 1091 5039 1 561970.804796148.70 0.00 +S 1091 5041 1 562011.704796177.40 0.00 +S 1091 5043 1 562052.704796206.10 0.00 +S 1091 5045 1 562093.704796234.80 0.00 +S 1091 5047 1 562134.604796263.40 0.00 +S 1091 5049 1 562175.604796292.10 0.00 +S 1091 5051 1 562216.504796320.80 0.00 +S 1091 5053 1 562257.504796349.50 0.00 +S 1091 5055 1 562298.404796378.10 0.00 +S 1091 5057 1 562339.404796406.80 0.00 +S 1091 5059 1 562380.404796435.50 0.00 +S 1091 5061 1 562421.304796464.20 0.00 +S 1091 5063 1 562462.304796492.90 0.00 +S 1091 5065 1 562503.204796521.50 0.00 +S 1091 5067 1 562544.204796550.20 0.00 +S 1091 5069 1 562585.104796578.90 0.00 +S 1091 5071 1 562626.104796607.60 0.00 +S 1091 5073 1 562667.104796636.30 0.00 +S 1091 5075 1 562708.004796664.90 0.00 +S 1091 5077 1 562749.004796693.60 0.00 +S 1091 5079 1 562789.904796722.30 0.00 +S 1091 5081 1 562830.904796751.00 0.00 +S 1091 5083 1 562871.904796779.60 0.00 +S 1091 5085 1 562912.804796808.30 0.00 +S 1091 5087 1 562953.804796837.00 0.00 +S 1091 5089 1 562994.704796865.70 0.00 +S 1091 5091 1 563035.704796894.40 0.00 +S 1091 5093 1 563076.604796923.00 0.00 +S 1091 5095 1 563117.604796951.70 0.00 +S 1091 5097 1 563158.604796980.40 0.00 +S 1091 5099 1 563199.504797009.10 0.00 +S 1091 5101 1 563240.504797037.80 0.00 +S 1091 5103 1 563281.404797066.40 0.00 +S 1091 5105 1 563322.404797095.10 0.00 +S 1091 5107 1 563363.304797123.80 0.00 +S 1091 5109 1 563404.304797152.50 0.00 +S 1091 5111 1 563445.304797181.20 0.00 +S 1091 5113 1 563486.204797209.80 0.00 +S 1091 5115 1 563527.204797238.50 0.00 +S 1091 5117 1 563568.104797267.20 0.00 +S 1091 5119 1 563609.104797295.90 0.00 +S 1091 5121 1 563650.004797324.50 0.00 +S 1091 5123 1 563691.004797353.20 0.00 +S 1091 5125 1 563732.004797381.90 0.00 +S 1091 5127 1 563772.904797410.60 0.00 +S 1091 5129 1 563813.904797439.30 0.00 +S 1091 5131 1 563854.804797467.90 0.00 +S 1091 5133 1 563895.804797496.60 0.00 +S 1091 5135 1 563936.804797525.30 0.00 +S 1093 4961 1 560402.104794989.30 0.00 +S 1093 4963 1 560443.104795018.00 0.00 +S 1093 4965 1 560484.004795046.60 0.00 +S 1093 4967 1 560525.004795075.30 0.00 +S 1093 4969 1 560565.904795104.00 0.00 +S 1093 4971 1 560606.904795132.70 0.00 +S 1093 4973 1 560647.904795161.40 0.00 +S 1093 4975 1 560688.804795190.00 0.00 +S 1093 4977 1 560729.804795218.70 0.00 +S 1093 4979 1 560770.704795247.40 0.00 +S 1093 4981 1 560811.704795276.10 0.00 +S 1093 4983 1 560852.704795304.70 0.00 +S 1093 4985 1 560893.604795333.40 0.00 +S 1093 4987 1 560934.604795362.10 0.00 +S 1093 4989 1 560975.504795390.80 0.00 +S 1093 4991 1 561016.504795419.50 0.00 +S 1093 4993 1 561057.404795448.10 0.00 +S 1093 4995 1 561098.404795476.80 0.00 +S 1093 4997 1 561139.404795505.50 0.00 +S 1093 4999 1 561180.304795534.20 0.00 +S 1093 5001 1 561221.304795562.90 0.00 +S 1093 5003 1 561262.204795591.50 0.00 +S 1093 5005 1 561303.204795620.20 0.00 +S 1093 5007 1 561344.104795648.90 0.00 +S 1093 5009 1 561385.104795677.60 0.00 +S 1093 5011 1 561426.104795706.30 0.00 +S 1093 5013 1 561467.004795734.90 0.00 +S 1093 5015 1 561508.004795763.60 0.00 +S 1093 5017 1 561548.904795792.30 0.00 +S 1093 5019 1 561589.904795821.00 0.00 +S 1093 5021 1 561630.804795849.60 0.00 +S 1093 5023 1 561671.804795878.30 0.00 +S 1093 5025 1 561712.804795907.00 0.00 +S 1093 5027 1 561753.704795935.70 0.00 +S 1093 5029 1 561794.704795964.40 0.00 +S 1093 5031 1 561835.604795993.00 0.00 +S 1093 5033 1 561876.604796021.70 0.00 +S 1093 5035 1 561917.504796050.40 0.00 +S 1093 5037 1 561958.504796079.10 0.00 +S 1093 5039 1 561999.504796107.80 0.00 +S 1093 5041 1 562040.404796136.40 0.00 +S 1093 5043 1 562081.404796165.10 0.00 +S 1093 5045 1 562122.304796193.80 0.00 +S 1093 5047 1 562163.304796222.50 0.00 +S 1093 5049 1 562204.304796251.20 0.00 +S 1093 5051 1 562245.204796279.80 0.00 +S 1093 5053 1 562286.204796308.50 0.00 +S 1093 5055 1 562327.104796337.20 0.00 +S 1093 5057 1 562368.104796365.90 0.00 +S 1093 5059 1 562409.004796394.50 0.00 +S 1093 5061 1 562450.004796423.20 0.00 +S 1093 5063 1 562491.004796451.90 0.00 +S 1093 5065 1 562531.904796480.60 0.00 +S 1093 5067 1 562572.904796509.30 0.00 +S 1093 5069 1 562613.804796537.90 0.00 +S 1093 5071 1 562654.804796566.60 0.00 +S 1093 5073 1 562695.704796595.30 0.00 +S 1093 5075 1 562736.704796624.00 0.00 +S 1093 5077 1 562777.704796652.70 0.00 +S 1093 5079 1 562818.604796681.30 0.00 +S 1093 5081 1 562859.604796710.00 0.00 +S 1093 5083 1 562900.504796738.70 0.00 +S 1093 5085 1 562941.504796767.40 0.00 +S 1093 5087 1 562982.404796796.00 0.00 +S 1093 5089 1 563023.404796824.70 0.00 +S 1093 5091 1 563064.404796853.40 0.00 +S 1093 5093 1 563105.304796882.10 0.00 +S 1093 5095 1 563146.304796910.80 0.00 +S 1093 5097 1 563187.204796939.40 0.00 +S 1093 5099 1 563228.204796968.10 0.00 +S 1093 5101 1 563269.104796996.80 0.00 +S 1093 5103 1 563310.104797025.50 0.00 +S 1093 5105 1 563351.104797054.20 0.00 +S 1093 5107 1 563392.004797082.80 0.00 +S 1093 5109 1 563433.004797111.50 0.00 +S 1093 5111 1 563473.904797140.20 0.00 +S 1093 5113 1 563514.904797168.90 0.00 +S 1093 5115 1 563555.904797197.60 0.00 +S 1093 5117 1 563596.804797226.20 0.00 +S 1093 5119 1 563637.804797254.90 0.00 +S 1093 5121 1 563678.704797283.60 0.00 +S 1093 5123 1 563719.704797312.30 0.00 +S 1093 5125 1 563760.604797340.90 0.00 +S 1093 5127 1 563801.604797369.60 0.00 +S 1093 5129 1 563842.604797398.30 0.00 +S 1093 5131 1 563883.504797427.00 0.00 +S 1093 5133 1 563924.504797455.70 0.00 +S 1093 5135 1 563965.404797484.30 0.00 +S 1095 4961 1 560430.804794948.30 0.00 +S 1095 4963 1 560471.804794977.00 0.00 +S 1095 4965 1 560512.704795005.70 0.00 +S 1095 4967 1 560553.704795034.40 0.00 +S 1095 4969 1 560594.604795063.00 0.00 +S 1095 4971 1 560635.604795091.70 0.00 +S 1095 4973 1 560676.504795120.40 0.00 +S 1095 4975 1 560717.504795149.10 0.00 +S 1095 4977 1 560758.504795177.80 0.00 +S 1095 4979 1 560799.404795206.40 0.00 +S 1095 4981 1 560840.404795235.10 0.00 +S 1095 4983 1 560881.304795263.80 0.00 +S 1095 4985 1 560922.304795292.50 0.00 +S 1095 4987 1 560963.204795321.10 0.00 +S 1095 4989 1 561004.204795349.80 0.00 +S 1095 4991 1 561045.204795378.50 0.00 +S 1095 4993 1 561086.104795407.20 0.00 +S 1095 4995 1 561127.104795435.90 0.00 +S 1095 4997 1 561168.004795464.50 0.00 +S 1095 4999 1 561209.004795493.20 0.00 +S 1095 5001 1 561249.904795521.90 0.00 +S 1095 5003 1 561290.904795550.60 0.00 +S 1095 5005 1 561331.904795579.30 0.00 +S 1095 5007 1 561372.804795607.90 0.00 +S 1095 5009 1 561413.804795636.60 0.00 +S 1095 5011 1 561454.704795665.30 0.00 +S 1095 5013 1 561495.704795694.00 0.00 +S 1095 5015 1 561536.704795722.70 0.00 +S 1095 5017 1 561577.604795751.30 0.00 +S 1095 5019 1 561618.604795780.00 0.00 +S 1095 5021 1 561659.504795808.70 0.00 +S 1095 5023 1 561700.504795837.40 0.00 +S 1095 5025 1 561741.404795866.00 0.00 +S 1095 5027 1 561782.404795894.70 0.00 +S 1095 5029 1 561823.404795923.40 0.00 +S 1095 5031 1 561864.304795952.10 0.00 +S 1095 5033 1 561905.304795980.80 0.00 +S 1095 5035 1 561946.204796009.40 0.00 +S 1095 5037 1 561987.204796038.10 0.00 +S 1095 5039 1 562028.104796066.80 0.00 +S 1095 5041 1 562069.104796095.50 0.00 +S 1095 5043 1 562110.104796124.20 0.00 +S 1095 5045 1 562151.004796152.80 0.00 +S 1095 5047 1 562192.004796181.50 0.00 +S 1095 5049 1 562232.904796210.20 0.00 +S 1095 5051 1 562273.904796238.90 0.00 +S 1095 5053 1 562314.804796267.60 0.00 +S 1095 5055 1 562355.804796296.20 0.00 +S 1095 5057 1 562396.804796324.90 0.00 +S 1095 5059 1 562437.704796353.60 0.00 +S 1095 5061 1 562478.704796382.30 0.00 +S 1095 5063 1 562519.604796410.90 0.00 +S 1095 5065 1 562560.604796439.60 0.00 +S 1095 5067 1 562601.504796468.30 0.00 +S 1095 5069 1 562642.504796497.00 0.00 +S 1095 5071 1 562683.504796525.70 0.00 +S 1095 5073 1 562724.404796554.30 0.00 +S 1095 5075 1 562765.404796583.00 0.00 +S 1095 5077 1 562806.304796611.70 0.00 +S 1095 5079 1 562847.304796640.40 0.00 +S 1095 5081 1 562888.304796669.10 0.00 +S 1095 5083 1 562929.204796697.70 0.00 +S 1095 5085 1 562970.204796726.40 0.00 +S 1095 5087 1 563011.104796755.10 0.00 +S 1095 5089 1 563052.104796783.80 0.00 +S 1095 5091 1 563093.004796812.40 0.00 +S 1095 5093 1 563134.004796841.10 0.00 +S 1095 5095 1 563175.004796869.80 0.00 +S 1095 5097 1 563215.904796898.50 0.00 +S 1095 5099 1 563256.904796927.20 0.00 +S 1095 5101 1 563297.804796955.80 0.00 +S 1095 5103 1 563338.804796984.50 0.00 +S 1095 5105 1 563379.704797013.20 0.00 +S 1095 5107 1 563420.704797041.90 0.00 +S 1095 5109 1 563461.704797070.60 0.00 +S 1095 5111 1 563502.604797099.20 0.00 +S 1095 5113 1 563543.604797127.90 0.00 +S 1095 5115 1 563584.504797156.60 0.00 +S 1095 5117 1 563625.504797185.30 0.00 +S 1095 5119 1 563666.404797214.00 0.00 +S 1095 5121 1 563707.404797242.60 0.00 +S 1095 5123 1 563748.404797271.30 0.00 +S 1095 5125 1 563789.304797300.00 0.00 +S 1095 5127 1 563830.304797328.70 0.00 +S 1095 5129 1 563871.204797357.30 0.00 +S 1095 5131 1 563912.204797386.00 0.00 +S 1095 5133 1 563953.204797414.70 0.00 +S 1095 5135 1 563994.104797443.40 0.00 +S 1097 4961 1 560459.504794907.40 0.00 +S 1097 4963 1 560500.404794936.00 0.00 +S 1097 4965 1 560541.404794964.70 0.00 +S 1097 4967 1 560582.304794993.40 0.00 +S 1097 4969 1 560623.304795022.10 0.00 +S 1097 4971 1 560664.304795050.80 0.00 +S 1097 4973 1 560705.204795079.40 0.00 +S 1097 4975 1 560746.204795108.10 0.00 +S 1097 4977 1 560787.104795136.80 0.00 +S 1097 4979 1 560828.104795165.50 0.00 +S 1097 4981 1 560869.104795194.20 0.00 +S 1097 4983 1 560910.004795222.80 0.00 +S 1097 4985 1 560951.004795251.50 0.00 +S 1097 4987 1 560991.904795280.20 0.00 +S 1097 4989 1 561032.904795308.90 0.00 +S 1097 4991 1 561073.804795337.50 0.00 +S 1097 4993 1 561114.804795366.20 0.00 +S 1097 4995 1 561155.804795394.90 0.00 +S 1097 4997 1 561196.704795423.60 0.00 +S 1097 4999 1 561237.704795452.30 0.00 +S 1097 5001 1 561278.604795480.90 0.00 +S 1097 5003 1 561319.604795509.60 0.00 +S 1097 5005 1 561360.504795538.30 0.00 +S 1097 5007 1 561401.504795567.00 0.00 +S 1097 5009 1 561442.504795595.70 0.00 +S 1097 5011 1 561483.404795624.30 0.00 +S 1097 5013 1 561524.404795653.00 0.00 +S 1097 5015 1 561565.304795681.70 0.00 +S 1097 5017 1 561606.304795710.40 0.00 +S 1097 5019 1 561647.204795739.10 0.00 +S 1097 5021 1 561688.204795767.70 0.00 +S 1097 5023 1 561729.204795796.40 0.00 +S 1097 5025 1 561770.104795825.10 0.00 +S 1097 5027 1 561811.104795853.80 0.00 +S 1097 5029 1 561852.004795882.40 0.00 +S 1097 5031 1 561893.004795911.10 0.00 +S 1097 5033 1 561933.904795939.80 0.00 +S 1097 5035 1 561974.904795968.50 0.00 +S 1097 5037 1 562015.904795997.20 0.00 +S 1097 5039 1 562056.804796025.80 0.00 +S 1097 5041 1 562097.804796054.50 0.00 +S 1097 5043 1 562138.704796083.20 0.00 +S 1097 5045 1 562179.704796111.90 0.00 +S 1097 5047 1 562220.704796140.60 0.00 +S 1097 5049 1 562261.604796169.20 0.00 +S 1097 5051 1 562302.604796197.90 0.00 +S 1097 5053 1 562343.504796226.60 0.00 +S 1097 5055 1 562384.504796255.30 0.00 +S 1097 5057 1 562425.404796284.00 0.00 +S 1097 5059 1 562466.404796312.60 0.00 +S 1097 5061 1 562507.404796341.30 0.00 +S 1097 5063 1 562548.304796370.00 0.00 +S 1097 5065 1 562589.304796398.70 0.00 +S 1097 5067 1 562630.204796427.30 0.00 +S 1097 5069 1 562671.204796456.00 0.00 +S 1097 5071 1 562712.104796484.70 0.00 +S 1097 5073 1 562753.104796513.40 0.00 +S 1097 5075 1 562794.104796542.10 0.00 +S 1097 5077 1 562835.004796570.70 0.00 +S 1097 5079 1 562876.004796599.40 0.00 +S 1097 5081 1 562916.904796628.10 0.00 +S 1097 5083 1 562957.904796656.80 0.00 +S 1097 5085 1 562998.804796685.50 0.00 +S 1097 5087 1 563039.804796714.10 0.00 +S 1097 5089 1 563080.804796742.80 0.00 +S 1097 5091 1 563121.704796771.50 0.00 +S 1097 5093 1 563162.704796800.20 0.00 +S 1097 5095 1 563203.604796828.80 0.00 +S 1097 5097 1 563244.604796857.50 0.00 +S 1097 5099 1 563285.504796886.20 0.00 +S 1097 5101 1 563326.504796914.90 0.00 +S 1097 5103 1 563367.504796943.60 0.00 +S 1097 5105 1 563408.404796972.20 0.00 +S 1097 5107 1 563449.404797000.90 0.00 +S 1097 5109 1 563490.304797029.60 0.00 +S 1097 5111 1 563531.304797058.30 0.00 +S 1097 5113 1 563572.304797087.00 0.00 +S 1097 5115 1 563613.204797115.60 0.00 +S 1097 5117 1 563654.204797144.30 0.00 +S 1097 5119 1 563695.104797173.00 0.00 +S 1097 5121 1 563736.104797201.70 0.00 +S 1097 5123 1 563777.004797230.40 0.00 +S 1097 5125 1 563818.004797259.00 0.00 +S 1097 5127 1 563859.004797287.70 0.00 +S 1097 5129 1 563899.904797316.40 0.00 +S 1097 5131 1 563940.904797345.10 0.00 +S 1097 5133 1 563981.804797373.70 0.00 +S 1097 5135 1 564022.804797402.40 0.00 +S 1099 4961 1 560488.204794866.40 0.00 +S 1099 4963 1 560529.104794895.10 0.00 +S 1099 4965 1 560570.104794923.80 0.00 +S 1099 4967 1 560611.004794952.40 0.00 +S 1099 4969 1 560652.004794981.10 0.00 +S 1099 4971 1 560692.904795009.80 0.00 +S 1099 4973 1 560733.904795038.50 0.00 +S 1099 4975 1 560774.904795067.20 0.00 +S 1099 4977 1 560815.804795095.80 0.00 +S 1099 4979 1 560856.804795124.50 0.00 +S 1099 4981 1 560897.704795153.20 0.00 +S 1099 4983 1 560938.704795181.90 0.00 +S 1099 4985 1 560979.604795210.60 0.00 +S 1099 4987 1 561020.604795239.20 0.00 +S 1099 4989 1 561061.604795267.90 0.00 +S 1099 4991 1 561102.504795296.60 0.00 +S 1099 4993 1 561143.504795325.30 0.00 +S 1099 4995 1 561184.404795353.90 0.00 +S 1099 4997 1 561225.404795382.60 0.00 +S 1099 4999 1 561266.304795411.30 0.00 +S 1099 5001 1 561307.304795440.00 0.00 +S 1099 5003 1 561348.304795468.70 0.00 +S 1099 5005 1 561389.204795497.30 0.00 +S 1099 5007 1 561430.204795526.00 0.00 +S 1099 5009 1 561471.104795554.70 0.00 +S 1099 5011 1 561512.104795583.40 0.00 +S 1099 5013 1 561553.104795612.10 0.00 +S 1099 5015 1 561594.004795640.70 0.00 +S 1099 5017 1 561635.004795669.40 0.00 +S 1099 5019 1 561675.904795698.10 0.00 +S 1099 5021 1 561716.904795726.80 0.00 +S 1099 5023 1 561757.804795755.50 0.00 +S 1099 5025 1 561798.804795784.10 0.00 +S 1099 5027 1 561839.804795812.80 0.00 +S 1099 5029 1 561880.704795841.50 0.00 +S 1099 5031 1 561921.704795870.20 0.00 +S 1099 5033 1 561962.604795898.80 0.00 +S 1099 5035 1 562003.604795927.50 0.00 +S 1099 5037 1 562044.504795956.20 0.00 +S 1099 5039 1 562085.504795984.90 0.00 +S 1099 5041 1 562126.504796013.60 0.00 +S 1099 5043 1 562167.404796042.20 0.00 +S 1099 5045 1 562208.404796070.90 0.00 +S 1099 5047 1 562249.304796099.60 0.00 +S 1099 5049 1 562290.304796128.30 0.00 +S 1099 5051 1 562331.204796157.00 0.00 +S 1099 5053 1 562372.204796185.60 0.00 +S 1099 5055 1 562413.204796214.30 0.00 +S 1099 5057 1 562454.104796243.00 0.00 +S 1099 5059 1 562495.104796271.70 0.00 +S 1099 5061 1 562536.004796300.40 0.00 +S 1099 5063 1 562577.004796329.00 0.00 +S 1099 5065 1 562617.904796357.70 0.00 +S 1099 5067 1 562658.904796386.40 0.00 +S 1099 5069 1 562699.904796415.10 0.00 +S 1099 5071 1 562740.804796443.70 0.00 +S 1099 5073 1 562781.804796472.40 0.00 +S 1099 5075 1 562822.704796501.10 0.00 +S 1099 5077 1 562863.704796529.80 0.00 +S 1099 5079 1 562904.704796558.50 0.00 +S 1099 5081 1 562945.604796587.10 0.00 +S 1099 5083 1 562986.604796615.80 0.00 +S 1099 5085 1 563027.504796644.50 0.00 +S 1099 5087 1 563068.504796673.20 0.00 +S 1099 5089 1 563109.404796701.90 0.00 +S 1099 5091 1 563150.404796730.50 0.00 +S 1099 5093 1 563191.404796759.20 0.00 +S 1099 5095 1 563232.304796787.90 0.00 +S 1099 5097 1 563273.304796816.60 0.00 +S 1099 5099 1 563314.204796845.20 0.00 +S 1099 5101 1 563355.204796873.90 0.00 +S 1099 5103 1 563396.104796902.60 0.00 +S 1099 5105 1 563437.104796931.30 0.00 +S 1099 5107 1 563478.104796960.00 0.00 +S 1099 5109 1 563519.004796988.60 0.00 +S 1099 5111 1 563560.004797017.30 0.00 +S 1099 5113 1 563600.904797046.00 0.00 +S 1099 5115 1 563641.904797074.70 0.00 +S 1099 5117 1 563682.804797103.40 0.00 +S 1099 5119 1 563723.804797132.00 0.00 +S 1099 5121 1 563764.804797160.70 0.00 +S 1099 5123 1 563805.704797189.40 0.00 +S 1099 5125 1 563846.704797218.10 0.00 +S 1099 5127 1 563887.604797246.80 0.00 +S 1099 5129 1 563928.604797275.40 0.00 +S 1099 5131 1 563969.604797304.10 0.00 +S 1099 5133 1 564010.504797332.80 0.00 +S 1099 5135 1 564051.504797361.50 0.00 +S 1101 4961 1 560516.804794825.50 0.00 +S 1101 4963 1 560557.804794854.10 0.00 +S 1101 4965 1 560598.704794882.80 0.00 +S 1101 4967 1 560639.704794911.50 0.00 +S 1101 4969 1 560680.704794940.20 0.00 +S 1101 4971 1 560721.604794968.80 0.00 +S 1101 4973 1 560762.604794997.50 0.00 +S 1101 4975 1 560803.504795026.20 0.00 +S 1101 4977 1 560844.504795054.90 0.00 +S 1101 4979 1 560885.504795083.60 0.00 +S 1101 4981 1 560926.404795112.20 0.00 +S 1101 4983 1 560967.404795140.90 0.00 +S 1101 4985 1 561008.304795169.60 0.00 +S 1101 4987 1 561049.304795198.30 0.00 +S 1101 4989 1 561090.204795227.00 0.00 +S 1101 4991 1 561131.204795255.60 0.00 +S 1101 4993 1 561172.204795284.30 0.00 +S 1101 4995 1 561213.104795313.00 0.00 +S 1101 4997 1 561254.104795341.70 0.00 +S 1101 4999 1 561295.004795370.30 0.00 +S 1101 5001 1 561336.004795399.00 0.00 +S 1101 5003 1 561376.904795427.70 0.00 +S 1101 5005 1 561417.904795456.40 0.00 +S 1101 5007 1 561458.904795485.10 0.00 +S 1101 5009 1 561499.804795513.70 0.00 +S 1101 5011 1 561540.804795542.40 0.00 +S 1101 5013 1 561581.704795571.10 0.00 +S 1101 5015 1 561622.704795599.80 0.00 +S 1101 5017 1 561663.604795628.50 0.00 +S 1101 5019 1 561704.604795657.10 0.00 +S 1101 5021 1 561745.604795685.80 0.00 +S 1101 5023 1 561786.504795714.50 0.00 +S 1101 5025 1 561827.504795743.20 0.00 +S 1101 5027 1 561868.404795771.90 0.00 +S 1101 5029 1 561909.404795800.50 0.00 +S 1101 5031 1 561950.304795829.20 0.00 +S 1101 5033 1 561991.304795857.90 0.00 +S 1101 5035 1 562032.304795886.60 0.00 +S 1101 5037 1 562073.204795915.20 0.00 +S 1101 5039 1 562114.204795943.90 0.00 +S 1101 5041 1 562155.104795972.60 0.00 +S 1101 5043 1 562196.104796001.30 0.00 +S 1101 5045 1 562237.104796030.00 0.00 +S 1101 5047 1 562278.004796058.60 0.00 +S 1101 5049 1 562319.004796087.30 0.00 +S 1101 5051 1 562359.904796116.00 0.00 +S 1101 5053 1 562400.904796144.70 0.00 +S 1101 5055 1 562441.804796173.40 0.00 +S 1101 5057 1 562482.804796202.00 0.00 +S 1101 5059 1 562523.804796230.70 0.00 +S 1101 5061 1 562564.704796259.40 0.00 +S 1101 5063 1 562605.704796288.10 0.00 +S 1101 5065 1 562646.604796316.80 0.00 +S 1101 5067 1 562687.604796345.40 0.00 +S 1101 5069 1 562728.504796374.10 0.00 +S 1101 5071 1 562769.504796402.80 0.00 +S 1101 5073 1 562810.504796431.50 0.00 +S 1101 5075 1 562851.404796460.10 0.00 +S 1101 5077 1 562892.404796488.80 0.00 +S 1101 5079 1 562933.304796517.50 0.00 +S 1101 5081 1 562974.304796546.20 0.00 +S 1101 5083 1 563015.204796574.90 0.00 +S 1101 5085 1 563056.204796603.50 0.00 +S 1101 5087 1 563097.204796632.20 0.00 +S 1101 5089 1 563138.104796660.90 0.00 +S 1101 5091 1 563179.104796689.60 0.00 +S 1101 5093 1 563220.004796718.30 0.00 +S 1101 5095 1 563261.004796746.90 0.00 +S 1101 5097 1 563301.904796775.60 0.00 +S 1101 5099 1 563342.904796804.30 0.00 +S 1101 5101 1 563383.904796833.00 0.00 +S 1101 5103 1 563424.804796861.60 0.00 +S 1101 5105 1 563465.804796890.30 0.00 +S 1101 5107 1 563506.704796919.00 0.00 +S 1101 5109 1 563547.704796947.70 0.00 +S 1101 5111 1 563588.704796976.40 0.00 +S 1101 5113 1 563629.604797005.00 0.00 +S 1101 5115 1 563670.604797033.70 0.00 +S 1101 5117 1 563711.504797062.40 0.00 +S 1101 5119 1 563752.504797091.10 0.00 +S 1101 5121 1 563793.404797119.80 0.00 +S 1101 5123 1 563834.404797148.40 0.00 +S 1101 5125 1 563875.404797177.10 0.00 +S 1101 5127 1 563916.304797205.80 0.00 +S 1101 5129 1 563957.304797234.50 0.00 +S 1101 5131 1 563998.204797263.20 0.00 +S 1101 5133 1 564039.204797291.80 0.00 +S 1101 5135 1 564080.104797320.50 0.00 +S 1103 4961 1 560545.504794784.50 0.00 +S 1103 4963 1 560586.504794813.20 0.00 +S 1103 4965 1 560627.404794841.90 0.00 +S 1103 4967 1 560668.404794870.50 0.00 +S 1103 4969 1 560709.304794899.20 0.00 +S 1103 4971 1 560750.304794927.90 0.00 +S 1103 4973 1 560791.304794956.60 0.00 +S 1103 4975 1 560832.204794985.20 0.00 +S 1103 4977 1 560873.204795013.90 0.00 +S 1103 4979 1 560914.104795042.60 0.00 +S 1103 4981 1 560955.104795071.30 0.00 +S 1103 4983 1 560996.004795100.00 0.00 +S 1103 4985 1 561037.004795128.60 0.00 +S 1103 4987 1 561078.004795157.30 0.00 +S 1103 4989 1 561118.904795186.00 0.00 +S 1103 4991 1 561159.904795214.70 0.00 +S 1103 4993 1 561200.804795243.40 0.00 +S 1103 4995 1 561241.804795272.00 0.00 +S 1103 4997 1 561282.704795300.70 0.00 +S 1103 4999 1 561323.704795329.40 0.00 +S 1103 5001 1 561364.704795358.10 0.00 +S 1103 5003 1 561405.604795386.70 0.00 +S 1103 5005 1 561446.604795415.40 0.00 +S 1103 5007 1 561487.504795444.10 0.00 +S 1103 5009 1 561528.504795472.80 0.00 +S 1103 5011 1 561569.504795501.50 0.00 +S 1103 5013 1 561610.404795530.10 0.00 +S 1103 5015 1 561651.404795558.80 0.00 +S 1103 5017 1 561692.304795587.50 0.00 +S 1103 5019 1 561733.304795616.20 0.00 +S 1103 5021 1 561774.204795644.90 0.00 +S 1103 5023 1 561815.204795673.50 0.00 +S 1103 5025 1 561856.204795702.20 0.00 +S 1103 5027 1 561897.104795730.90 0.00 +S 1103 5029 1 561938.104795759.60 0.00 +S 1103 5031 1 561979.004795788.30 0.00 +S 1103 5033 1 562020.004795816.90 0.00 +S 1103 5035 1 562060.904795845.60 0.00 +S 1103 5037 1 562101.904795874.30 0.00 +S 1103 5039 1 562142.904795903.00 0.00 +S 1103 5041 1 562183.804795931.60 0.00 +S 1103 5043 1 562224.804795960.30 0.00 +S 1103 5045 1 562265.704795989.00 0.00 +S 1103 5047 1 562306.704796017.70 0.00 +S 1103 5049 1 562347.604796046.40 0.00 +S 1103 5051 1 562388.604796075.00 0.00 +S 1103 5053 1 562429.604796103.70 0.00 +S 1103 5055 1 562470.504796132.40 0.00 +S 1103 5057 1 562511.504796161.10 0.00 +S 1103 5059 1 562552.404796189.80 0.00 +S 1103 5061 1 562593.404796218.40 0.00 +S 1103 5063 1 562634.304796247.10 0.00 +S 1103 5065 1 562675.304796275.80 0.00 +S 1103 5067 1 562716.304796304.50 0.00 +S 1103 5069 1 562757.204796333.20 0.00 +S 1103 5071 1 562798.204796361.80 0.00 +S 1103 5073 1 562839.104796390.50 0.00 +S 1103 5075 1 562880.104796419.20 0.00 +S 1103 5077 1 562921.104796447.90 0.00 +S 1103 5079 1 562962.004796476.50 0.00 +S 1103 5081 1 563003.004796505.20 0.00 +S 1103 5083 1 563043.904796533.90 0.00 +S 1103 5085 1 563084.904796562.60 0.00 +S 1103 5087 1 563125.804796591.30 0.00 +S 1103 5089 1 563166.804796619.90 0.00 +S 1103 5091 1 563207.804796648.60 0.00 +S 1103 5093 1 563248.704796677.30 0.00 +S 1103 5095 1 563289.704796706.00 0.00 +S 1103 5097 1 563330.604796734.70 0.00 +S 1103 5099 1 563371.604796763.30 0.00 +S 1103 5101 1 563412.504796792.00 0.00 +S 1103 5103 1 563453.504796820.70 0.00 +S 1103 5105 1 563494.504796849.40 0.00 +S 1103 5107 1 563535.404796878.00 0.00 +S 1103 5109 1 563576.404796906.70 0.00 +S 1103 5111 1 563617.304796935.40 0.00 +S 1103 5113 1 563658.304796964.10 0.00 +S 1103 5115 1 563699.204796992.80 0.00 +S 1103 5117 1 563740.204797021.40 0.00 +S 1103 5119 1 563781.204797050.10 0.00 +S 1103 5121 1 563822.104797078.80 0.00 +S 1103 5123 1 563863.104797107.50 0.00 +S 1103 5125 1 563904.004797136.20 0.00 +S 1103 5127 1 563945.004797164.80 0.00 +S 1103 5129 1 563986.004797193.50 0.00 +S 1103 5131 1 564026.904797222.20 0.00 +S 1103 5133 1 564067.904797250.90 0.00 +S 1103 5135 1 564108.804797279.60 0.00 +S 1105 4961 1 560574.204794743.50 0.00 +S 1105 4963 1 560615.104794772.20 0.00 +S 1105 4965 1 560656.104794800.90 0.00 +S 1105 4967 1 560697.104794829.60 0.00 +S 1105 4969 1 560738.004794858.30 0.00 +S 1105 4971 1 560779.004794886.90 0.00 +S 1105 4973 1 560819.904794915.60 0.00 +S 1105 4975 1 560860.904794944.30 0.00 +S 1105 4977 1 560901.904794973.00 0.00 +S 1105 4979 1 560942.804795001.60 0.00 +S 1105 4981 1 560983.804795030.30 0.00 +S 1105 4983 1 561024.704795059.00 0.00 +S 1105 4985 1 561065.704795087.70 0.00 +S 1105 4987 1 561106.604795116.40 0.00 +S 1105 4989 1 561147.604795145.00 0.00 +S 1105 4991 1 561188.604795173.70 0.00 +S 1105 4993 1 561229.504795202.40 0.00 +S 1105 4995 1 561270.504795231.10 0.00 +S 1105 4997 1 561311.404795259.80 0.00 +S 1105 4999 1 561352.404795288.40 0.00 +S 1105 5001 1 561393.304795317.10 0.00 +S 1105 5003 1 561434.304795345.80 0.00 +S 1105 5005 1 561475.304795374.50 0.00 +S 1105 5007 1 561516.204795403.10 0.00 +S 1105 5009 1 561557.204795431.80 0.00 +S 1105 5011 1 561598.104795460.50 0.00 +S 1105 5013 1 561639.104795489.20 0.00 +S 1105 5015 1 561680.004795517.90 0.00 +S 1105 5017 1 561721.004795546.50 0.00 +S 1105 5019 1 561762.004795575.20 0.00 +S 1105 5021 1 561802.904795603.90 0.00 +S 1105 5023 1 561843.904795632.60 0.00 +S 1105 5025 1 561884.804795661.30 0.00 +S 1105 5027 1 561925.804795689.90 0.00 +S 1105 5029 1 561966.704795718.60 0.00 +S 1105 5031 1 562007.704795747.30 0.00 +S 1105 5033 1 562048.704795776.00 0.00 +S 1105 5035 1 562089.604795804.70 0.00 +S 1105 5037 1 562130.604795833.30 0.00 +S 1105 5039 1 562171.504795862.00 0.00 +S 1105 5041 1 562212.504795890.70 0.00 +S 1105 5043 1 562253.504795919.40 0.00 +S 1105 5045 1 562294.404795948.00 0.00 +S 1105 5047 1 562335.404795976.70 0.00 +S 1105 5049 1 562376.304796005.40 0.00 +S 1105 5051 1 562417.304796034.10 0.00 +S 1105 5053 1 562458.204796062.80 0.00 +S 1105 5055 1 562499.204796091.40 0.00 +S 1105 5057 1 562540.204796120.10 0.00 +S 1105 5059 1 562581.104796148.80 0.00 +S 1105 5061 1 562622.104796177.50 0.00 +S 1105 5063 1 562663.004796206.20 0.00 +S 1105 5065 1 562704.004796234.80 0.00 +S 1105 5067 1 562744.904796263.50 0.00 +S 1105 5069 1 562785.904796292.20 0.00 +S 1105 5071 1 562826.904796320.90 0.00 +S 1105 5073 1 562867.804796349.60 0.00 +S 1105 5075 1 562908.804796378.20 0.00 +S 1105 5077 1 562949.704796406.90 0.00 +S 1105 5079 1 562990.704796435.60 0.00 +S 1105 5081 1 563031.604796464.30 0.00 +S 1105 5083 1 563072.604796492.90 0.00 +S 1105 5085 1 563113.604796521.60 0.00 +S 1105 5087 1 563154.504796550.30 0.00 +S 1105 5089 1 563195.504796579.00 0.00 +S 1105 5091 1 563236.404796607.70 0.00 +S 1105 5093 1 563277.404796636.30 0.00 +S 1105 5095 1 563318.404796665.00 0.00 +S 1105 5097 1 563359.304796693.70 0.00 +S 1105 5099 1 563400.304796722.40 0.00 +S 1105 5101 1 563441.204796751.10 0.00 +S 1105 5103 1 563482.204796779.70 0.00 +S 1105 5105 1 563523.104796808.40 0.00 +S 1105 5107 1 563564.104796837.10 0.00 +S 1105 5109 1 563605.104796865.80 0.00 +S 1105 5111 1 563646.004796894.40 0.00 +S 1105 5113 1 563687.004796923.10 0.00 +S 1105 5115 1 563727.904796951.80 0.00 +S 1105 5117 1 563768.904796980.50 0.00 +S 1105 5119 1 563809.804797009.20 0.00 +S 1105 5121 1 563850.804797037.80 0.00 +S 1105 5123 1 563891.804797066.50 0.00 +S 1105 5125 1 563932.704797095.20 0.00 +S 1105 5127 1 563973.704797123.90 0.00 +S 1105 5129 1 564014.604797152.60 0.00 +S 1105 5131 1 564055.604797181.20 0.00 +S 1105 5133 1 564096.504797209.90 0.00 +S 1105 5135 1 564137.504797238.60 0.00 +S 1107 4961 1 560602.904794702.60 0.00 +S 1107 4963 1 560643.804794731.30 0.00 +S 1107 4965 1 560684.804794759.90 0.00 +S 1107 4967 1 560725.704794788.60 0.00 +S 1107 4969 1 560766.704794817.30 0.00 +S 1107 4971 1 560807.704794846.00 0.00 +S 1107 4973 1 560848.604794874.70 0.00 +S 1107 4975 1 560889.604794903.30 0.00 +S 1107 4977 1 560930.504794932.00 0.00 +S 1107 4979 1 560971.504794960.70 0.00 +S 1107 4981 1 561012.404794989.40 0.00 +S 1107 4983 1 561053.404795018.00 0.00 +S 1107 4985 1 561094.404795046.70 0.00 +S 1107 4987 1 561135.304795075.40 0.00 +S 1107 4989 1 561176.304795104.10 0.00 +S 1107 4991 1 561217.204795132.80 0.00 +S 1107 4993 1 561258.204795161.40 0.00 +S 1107 4995 1 561299.104795190.10 0.00 +S 1107 4997 1 561340.104795218.80 0.00 +S 1107 4999 1 561381.104795247.50 0.00 +S 1107 5001 1 561422.004795276.20 0.00 +S 1107 5003 1 561463.004795304.80 0.00 +S 1107 5005 1 561503.904795333.50 0.00 +S 1107 5007 1 561544.904795362.20 0.00 +S 1107 5009 1 561585.904795390.90 0.00 +S 1107 5011 1 561626.804795419.50 0.00 +S 1107 5013 1 561667.804795448.20 0.00 +S 1107 5015 1 561708.704795476.90 0.00 +S 1107 5017 1 561749.704795505.60 0.00 +S 1107 5019 1 561790.604795534.30 0.00 +S 1107 5021 1 561831.604795562.90 0.00 +S 1107 5023 1 561872.604795591.60 0.00 +S 1107 5025 1 561913.504795620.30 0.00 +S 1107 5027 1 561954.504795649.00 0.00 +S 1107 5029 1 561995.404795677.70 0.00 +S 1107 5031 1 562036.404795706.30 0.00 +S 1107 5033 1 562077.304795735.00 0.00 +S 1107 5035 1 562118.304795763.70 0.00 +S 1107 5037 1 562159.304795792.40 0.00 +S 1107 5039 1 562200.204795821.10 0.00 +S 1107 5041 1 562241.204795849.70 0.00 +S 1107 5043 1 562282.104795878.40 0.00 +S 1107 5045 1 562323.104795907.10 0.00 +S 1107 5047 1 562364.004795935.80 0.00 +S 1107 5049 1 562405.004795964.40 0.00 +S 1107 5051 1 562446.004795993.10 0.00 +S 1107 5053 1 562486.904796021.80 0.00 +S 1107 5055 1 562527.904796050.50 0.00 +S 1107 5057 1 562568.804796079.20 0.00 +S 1107 5059 1 562609.804796107.80 0.00 +S 1107 5061 1 562650.704796136.50 0.00 +S 1107 5063 1 562691.704796165.20 0.00 +S 1107 5065 1 562732.704796193.90 0.00 +S 1107 5067 1 562773.604796222.60 0.00 +S 1107 5069 1 562814.604796251.20 0.00 +S 1107 5071 1 562855.504796279.90 0.00 +S 1107 5073 1 562896.504796308.60 0.00 +S 1107 5075 1 562937.504796337.30 0.00 +S 1107 5077 1 562978.404796366.00 0.00 +S 1107 5079 1 563019.404796394.60 0.00 +S 1107 5081 1 563060.304796423.30 0.00 +S 1107 5083 1 563101.304796452.00 0.00 +S 1107 5085 1 563142.204796480.70 0.00 +S 1107 5087 1 563183.204796509.30 0.00 +S 1107 5089 1 563224.204796538.00 0.00 +S 1107 5091 1 563265.104796566.70 0.00 +S 1107 5093 1 563306.104796595.40 0.00 +S 1107 5095 1 563347.004796624.10 0.00 +S 1107 5097 1 563388.004796652.70 0.00 +S 1107 5099 1 563428.904796681.40 0.00 +S 1107 5101 1 563469.904796710.10 0.00 +S 1107 5103 1 563510.904796738.80 0.00 +S 1107 5105 1 563551.804796767.50 0.00 +S 1107 5107 1 563592.804796796.10 0.00 +S 1107 5109 1 563633.704796824.80 0.00 +S 1107 5111 1 563674.704796853.50 0.00 +S 1107 5113 1 563715.604796882.20 0.00 +S 1107 5115 1 563756.604796910.80 0.00 +S 1107 5117 1 563797.604796939.50 0.00 +S 1107 5119 1 563838.504796968.20 0.00 +S 1107 5121 1 563879.504796996.90 0.00 +S 1107 5123 1 563920.404797025.60 0.00 +S 1107 5125 1 563961.404797054.20 0.00 +S 1107 5127 1 564002.404797082.90 0.00 +S 1107 5129 1 564043.304797111.60 0.00 +S 1107 5131 1 564084.304797140.30 0.00 +S 1107 5133 1 564125.204797169.00 0.00 +S 1107 5135 1 564166.204797197.60 0.00 +S 1109 4961 1 560631.504794661.60 0.00 +S 1109 4963 1 560672.504794690.30 0.00 +S 1109 4965 1 560713.504794719.00 0.00 +S 1109 4967 1 560754.404794747.70 0.00 +S 1109 4969 1 560795.404794776.30 0.00 +S 1109 4971 1 560836.304794805.00 0.00 +S 1109 4973 1 560877.304794833.70 0.00 +S 1109 4975 1 560918.304794862.40 0.00 +S 1109 4977 1 560959.204794891.10 0.00 +S 1109 4979 1 561000.204794919.70 0.00 +S 1109 4981 1 561041.104794948.40 0.00 +S 1109 4983 1 561082.104794977.10 0.00 +S 1109 4985 1 561123.004795005.80 0.00 +S 1109 4987 1 561164.004795034.40 0.00 +S 1109 4989 1 561205.004795063.10 0.00 +S 1109 4991 1 561245.904795091.80 0.00 +S 1109 4993 1 561286.904795120.50 0.00 +S 1109 4995 1 561327.804795149.20 0.00 +S 1109 4997 1 561368.804795177.80 0.00 +S 1109 4999 1 561409.704795206.50 0.00 +S 1109 5001 1 561450.704795235.20 0.00 +S 1109 5003 1 561491.704795263.90 0.00 +S 1109 5005 1 561532.604795292.60 0.00 +S 1109 5007 1 561573.604795321.20 0.00 +S 1109 5009 1 561614.504795349.90 0.00 +S 1109 5011 1 561655.504795378.60 0.00 +S 1109 5013 1 561696.404795407.30 0.00 +S 1109 5015 1 561737.404795435.90 0.00 +S 1109 5017 1 561778.404795464.60 0.00 +S 1109 5019 1 561819.304795493.30 0.00 +S 1109 5021 1 561860.304795522.00 0.00 +S 1109 5023 1 561901.204795550.70 0.00 +S 1109 5025 1 561942.204795579.30 0.00 +S 1109 5027 1 561983.104795608.00 0.00 +S 1109 5029 1 562024.104795636.70 0.00 +S 1109 5031 1 562065.104795665.40 0.00 +S 1109 5033 1 562106.004795694.10 0.00 +S 1109 5035 1 562147.004795722.70 0.00 +S 1109 5037 1 562187.904795751.40 0.00 +S 1109 5039 1 562228.904795780.10 0.00 +S 1109 5041 1 562269.904795808.80 0.00 +S 1109 5043 1 562310.804795837.50 0.00 +S 1109 5045 1 562351.804795866.10 0.00 +S 1109 5047 1 562392.704795894.80 0.00 +S 1109 5049 1 562433.704795923.50 0.00 +S 1109 5051 1 562474.604795952.20 0.00 +S 1109 5053 1 562515.604795980.80 0.00 +S 1109 5055 1 562556.604796009.50 0.00 +S 1109 5057 1 562597.504796038.20 0.00 +S 1109 5059 1 562638.504796066.90 0.00 +S 1109 5061 1 562679.404796095.60 0.00 +S 1109 5063 1 562720.404796124.20 0.00 +S 1109 5065 1 562761.304796152.90 0.00 +S 1109 5067 1 562802.304796181.60 0.00 +S 1109 5069 1 562843.304796210.30 0.00 +S 1109 5071 1 562884.204796239.00 0.00 +S 1109 5073 1 562925.204796267.60 0.00 +S 1109 5075 1 562966.104796296.30 0.00 +S 1109 5077 1 563007.104796325.00 0.00 +S 1109 5079 1 563048.004796353.70 0.00 +S 1109 5081 1 563089.004796382.40 0.00 +S 1109 5083 1 563130.004796411.00 0.00 +S 1109 5085 1 563170.904796439.70 0.00 +S 1109 5087 1 563211.904796468.40 0.00 +S 1109 5089 1 563252.804796497.10 0.00 +S 1109 5091 1 563293.804796525.70 0.00 +S 1109 5093 1 563334.804796554.40 0.00 +S 1109 5095 1 563375.704796583.10 0.00 +S 1109 5097 1 563416.704796611.80 0.00 +S 1109 5099 1 563457.604796640.50 0.00 +S 1109 5101 1 563498.604796669.10 0.00 +S 1109 5103 1 563539.504796697.80 0.00 +S 1109 5105 1 563580.504796726.50 0.00 +S 1109 5107 1 563621.504796755.20 0.00 +S 1109 5109 1 563662.404796783.90 0.00 +S 1109 5111 1 563703.404796812.50 0.00 +S 1109 5113 1 563744.304796841.20 0.00 +S 1109 5115 1 563785.304796869.90 0.00 +S 1109 5117 1 563826.204796898.60 0.00 +S 1109 5119 1 563867.204796927.20 0.00 +S 1109 5121 1 563908.204796955.90 0.00 +S 1109 5123 1 563949.104796984.60 0.00 +S 1109 5125 1 563990.104797013.30 0.00 +S 1109 5127 1 564031.004797042.00 0.00 +S 1109 5129 1 564072.004797070.60 0.00 +S 1109 5131 1 564112.904797099.30 0.00 +S 1109 5133 1 564153.904797128.00 0.00 +S 1109 5135 1 564194.904797156.70 0.00 +S 1111 4961 1 560660.204794620.70 0.00 +S 1111 4963 1 560701.204794649.30 0.00 +S 1111 4965 1 560742.104794678.00 0.00 +S 1111 4967 1 560783.104794706.70 0.00 +S 1111 4969 1 560824.104794735.40 0.00 +S 1111 4971 1 560865.004794764.10 0.00 +S 1111 4973 1 560906.004794792.70 0.00 +S 1111 4975 1 560946.904794821.40 0.00 +S 1111 4977 1 560987.904794850.10 0.00 +S 1111 4979 1 561028.804794878.80 0.00 +S 1111 4981 1 561069.804794907.50 0.00 +S 1111 4983 1 561110.804794936.10 0.00 +S 1111 4985 1 561151.704794964.80 0.00 +S 1111 4987 1 561192.704794993.50 0.00 +S 1111 4989 1 561233.604795022.20 0.00 +S 1111 4991 1 561274.604795050.80 0.00 +S 1111 4993 1 561315.504795079.50 0.00 +S 1111 4995 1 561356.504795108.20 0.00 +S 1111 4997 1 561397.504795136.90 0.00 +S 1111 4999 1 561438.404795165.60 0.00 +S 1111 5001 1 561479.404795194.20 0.00 +S 1111 5003 1 561520.304795222.90 0.00 +S 1111 5005 1 561561.304795251.60 0.00 +S 1111 5007 1 561602.304795280.30 0.00 +S 1111 5009 1 561643.204795309.00 0.00 +S 1111 5011 1 561684.204795337.60 0.00 +S 1111 5013 1 561725.104795366.30 0.00 +S 1111 5015 1 561766.104795395.00 0.00 +S 1111 5017 1 561807.004795423.70 0.00 +S 1111 5019 1 561848.004795452.30 0.00 +S 1111 5021 1 561889.004795481.00 0.00 +S 1111 5023 1 561929.904795509.70 0.00 +S 1111 5025 1 561970.904795538.40 0.00 +S 1111 5027 1 562011.804795567.10 0.00 +S 1111 5029 1 562052.804795595.70 0.00 +S 1111 5031 1 562093.704795624.40 0.00 +S 1111 5033 1 562134.704795653.10 0.00 +S 1111 5035 1 562175.704795681.80 0.00 +S 1111 5037 1 562216.604795710.50 0.00 +S 1111 5039 1 562257.604795739.10 0.00 +S 1111 5041 1 562298.504795767.80 0.00 +S 1111 5043 1 562339.504795796.50 0.00 +S 1111 5045 1 562380.404795825.20 0.00 +S 1111 5047 1 562421.404795853.90 0.00 +S 1111 5049 1 562462.404795882.50 0.00 +S 1111 5051 1 562503.304795911.20 0.00 +S 1111 5053 1 562544.304795939.90 0.00 +S 1111 5055 1 562585.204795968.60 0.00 +S 1111 5057 1 562626.204795997.20 0.00 +S 1111 5059 1 562667.104796025.90 0.00 +S 1111 5061 1 562708.104796054.60 0.00 +S 1111 5063 1 562749.104796083.30 0.00 +S 1111 5065 1 562790.004796112.00 0.00 +S 1111 5067 1 562831.004796140.60 0.00 +S 1111 5069 1 562871.904796169.30 0.00 +S 1111 5071 1 562912.904796198.00 0.00 +S 1111 5073 1 562953.904796226.70 0.00 +S 1111 5075 1 562994.804796255.40 0.00 +S 1111 5077 1 563035.804796284.00 0.00 +S 1111 5079 1 563076.704796312.70 0.00 +S 1111 5081 1 563117.704796341.40 0.00 +S 1111 5083 1 563158.604796370.10 0.00 +S 1111 5085 1 563199.604796398.80 0.00 +S 1111 5087 1 563240.604796427.40 0.00 +S 1111 5089 1 563281.504796456.10 0.00 +S 1111 5091 1 563322.504796484.80 0.00 +S 1111 5093 1 563363.404796513.50 0.00 +S 1111 5095 1 563404.404796542.10 0.00 +S 1111 5097 1 563445.304796570.80 0.00 +S 1111 5099 1 563486.304796599.50 0.00 +S 1111 5101 1 563527.304796628.20 0.00 +S 1111 5103 1 563568.204796656.90 0.00 +S 1111 5105 1 563609.204796685.50 0.00 +S 1111 5107 1 563650.104796714.20 0.00 +S 1111 5109 1 563691.104796742.90 0.00 +S 1111 5111 1 563732.004796771.60 0.00 +S 1111 5113 1 563773.004796800.30 0.00 +S 1111 5115 1 563814.004796828.90 0.00 +S 1111 5117 1 563854.904796857.60 0.00 +S 1111 5119 1 563895.904796886.30 0.00 +S 1111 5121 1 563936.804796915.00 0.00 +S 1111 5123 1 563977.804796943.60 0.00 +S 1111 5125 1 564018.804796972.30 0.00 +S 1111 5127 1 564059.704797001.00 0.00 +S 1111 5129 1 564100.704797029.70 0.00 +S 1111 5131 1 564141.604797058.40 0.00 +S 1111 5133 1 564182.604797087.00 0.00 +S 1111 5135 1 564223.504797115.70 0.00 +S 1113 4961 1 560688.904794579.70 0.00 +S 1113 4963 1 560729.904794608.40 0.00 +S 1113 4965 1 560770.804794637.10 0.00 +S 1113 4967 1 560811.804794665.70 0.00 +S 1113 4969 1 560852.704794694.40 0.00 +S 1113 4971 1 560893.704794723.10 0.00 +S 1113 4973 1 560934.704794751.80 0.00 +S 1113 4975 1 560975.604794780.50 0.00 +S 1113 4977 1 561016.604794809.10 0.00 +S 1113 4979 1 561057.504794837.80 0.00 +S 1113 4981 1 561098.504794866.50 0.00 +S 1113 4983 1 561139.404794895.20 0.00 +S 1113 4985 1 561180.404794923.90 0.00 +S 1113 4987 1 561221.404794952.50 0.00 +S 1113 4989 1 561262.304794981.20 0.00 +S 1113 4991 1 561303.304795009.90 0.00 +S 1113 4993 1 561344.204795038.60 0.00 +S 1113 4995 1 561385.204795067.20 0.00 +S 1113 4997 1 561426.104795095.90 0.00 +S 1113 4999 1 561467.104795124.60 0.00 +S 1113 5001 1 561508.104795153.30 0.00 +S 1113 5003 1 561549.004795182.00 0.00 +S 1113 5005 1 561590.004795210.60 0.00 +S 1113 5007 1 561630.904795239.30 0.00 +S 1113 5009 1 561671.904795268.00 0.00 +S 1113 5011 1 561712.804795296.70 0.00 +S 1113 5013 1 561753.804795325.40 0.00 +S 1113 5015 1 561794.804795354.00 0.00 +S 1113 5017 1 561835.704795382.70 0.00 +S 1113 5019 1 561876.704795411.40 0.00 +S 1113 5021 1 561917.604795440.10 0.00 +S 1113 5023 1 561958.604795468.70 0.00 +S 1113 5025 1 561999.504795497.40 0.00 +S 1113 5027 1 562040.504795526.10 0.00 +S 1113 5029 1 562081.504795554.80 0.00 +S 1113 5031 1 562122.404795583.50 0.00 +S 1113 5033 1 562163.404795612.10 0.00 +S 1113 5035 1 562204.304795640.80 0.00 +S 1113 5037 1 562245.304795669.50 0.00 +S 1113 5039 1 562286.304795698.20 0.00 +S 1113 5041 1 562327.204795726.90 0.00 +S 1113 5043 1 562368.204795755.50 0.00 +S 1113 5045 1 562409.104795784.20 0.00 +S 1113 5047 1 562450.104795812.90 0.00 +S 1113 5049 1 562491.004795841.60 0.00 +S 1113 5051 1 562532.004795870.30 0.00 +S 1113 5053 1 562573.004795898.90 0.00 +S 1113 5055 1 562613.904795927.60 0.00 +S 1113 5057 1 562654.904795956.30 0.00 +S 1113 5059 1 562695.804795985.00 0.00 +S 1113 5061 1 562736.804796013.60 0.00 +S 1113 5063 1 562777.704796042.30 0.00 +S 1113 5065 1 562818.704796071.00 0.00 +S 1113 5067 1 562859.704796099.70 0.00 +S 1113 5069 1 562900.604796128.40 0.00 +S 1113 5071 1 562941.604796157.00 0.00 +S 1113 5073 1 562982.504796185.70 0.00 +S 1113 5075 1 563023.504796214.40 0.00 +S 1113 5077 1 563064.404796243.10 0.00 +S 1113 5079 1 563105.404796271.80 0.00 +S 1113 5081 1 563146.404796300.40 0.00 +S 1113 5083 1 563187.304796329.10 0.00 +S 1113 5085 1 563228.304796357.80 0.00 +S 1113 5087 1 563269.204796386.50 0.00 +S 1113 5089 1 563310.204796415.20 0.00 +S 1113 5091 1 563351.204796443.80 0.00 +S 1113 5093 1 563392.104796472.50 0.00 +S 1113 5095 1 563433.104796501.20 0.00 +S 1113 5097 1 563474.004796529.90 0.00 +S 1113 5099 1 563515.004796558.50 0.00 +S 1113 5101 1 563555.904796587.20 0.00 +S 1113 5103 1 563596.904796615.90 0.00 +S 1113 5105 1 563637.904796644.60 0.00 +S 1113 5107 1 563678.804796673.30 0.00 +S 1113 5109 1 563719.804796701.90 0.00 +S 1113 5111 1 563760.704796730.60 0.00 +S 1113 5113 1 563801.704796759.30 0.00 +S 1113 5115 1 563842.604796788.00 0.00 +S 1113 5117 1 563883.604796816.70 0.00 +S 1113 5119 1 563924.604796845.30 0.00 +S 1113 5121 1 563965.504796874.00 0.00 +S 1113 5123 1 564006.504796902.70 0.00 +S 1113 5125 1 564047.404796931.40 0.00 +S 1113 5127 1 564088.404796960.00 0.00 +S 1113 5129 1 564129.304796988.70 0.00 +S 1113 5131 1 564170.304797017.40 0.00 +S 1113 5133 1 564211.304797046.10 0.00 +S 1113 5135 1 564252.204797074.80 0.00 +S 1115 4961 1 560717.604794538.70 0.00 +S 1115 4963 1 560758.504794567.40 0.00 +S 1115 4965 1 560799.504794596.10 0.00 +S 1115 4967 1 560840.504794624.80 0.00 +S 1115 4969 1 560881.404794653.50 0.00 +S 1115 4971 1 560922.404794682.10 0.00 +S 1115 4973 1 560963.304794710.80 0.00 +S 1115 4975 1 561004.304794739.50 0.00 +S 1115 4977 1 561045.204794768.20 0.00 +S 1115 4979 1 561086.204794796.90 0.00 +S 1115 4981 1 561127.204794825.50 0.00 +S 1115 4983 1 561168.104794854.20 0.00 +S 1115 4985 1 561209.104794882.90 0.00 +S 1115 4987 1 561250.004794911.60 0.00 +S 1115 4989 1 561291.004794940.30 0.00 +S 1115 4991 1 561331.904794968.90 0.00 +S 1115 4993 1 561372.904794997.60 0.00 +S 1115 4995 1 561413.904795026.30 0.00 +S 1115 4997 1 561454.804795055.00 0.00 +S 1115 4999 1 561495.804795083.60 0.00 +S 1115 5001 1 561536.704795112.30 0.00 +S 1115 5003 1 561577.704795141.00 0.00 +S 1115 5005 1 561618.704795169.70 0.00 +S 1115 5007 1 561659.604795198.40 0.00 +S 1115 5009 1 561700.604795227.00 0.00 +S 1115 5011 1 561741.504795255.70 0.00 +S 1115 5013 1 561782.504795284.40 0.00 +S 1115 5015 1 561823.404795313.10 0.00 +S 1115 5017 1 561864.404795341.80 0.00 +S 1115 5019 1 561905.404795370.40 0.00 +S 1115 5021 1 561946.304795399.10 0.00 +S 1115 5023 1 561987.304795427.80 0.00 +S 1115 5025 1 562028.204795456.50 0.00 +S 1115 5027 1 562069.204795485.10 0.00 +S 1115 5029 1 562110.104795513.80 0.00 +S 1115 5031 1 562151.104795542.50 0.00 +S 1115 5033 1 562192.104795571.20 0.00 +S 1115 5035 1 562233.004795599.90 0.00 +S 1115 5037 1 562274.004795628.50 0.00 +S 1115 5039 1 562314.904795657.20 0.00 +S 1115 5041 1 562355.904795685.90 0.00 +S 1115 5043 1 562396.804795714.60 0.00 +S 1115 5045 1 562437.804795743.30 0.00 +S 1115 5047 1 562478.804795771.90 0.00 +S 1115 5049 1 562519.704795800.60 0.00 +S 1115 5051 1 562560.704795829.30 0.00 +S 1115 5053 1 562601.604795858.00 0.00 +S 1115 5055 1 562642.604795886.70 0.00 +S 1115 5057 1 562683.504795915.30 0.00 +S 1115 5059 1 562724.504795944.00 0.00 +S 1115 5061 1 562765.504795972.70 0.00 +S 1115 5063 1 562806.404796001.40 0.00 +S 1115 5065 1 562847.404796030.00 0.00 +S 1115 5067 1 562888.304796058.70 0.00 +S 1115 5069 1 562929.304796087.40 0.00 +S 1115 5071 1 562970.304796116.10 0.00 +S 1115 5073 1 563011.204796144.80 0.00 +S 1115 5075 1 563052.204796173.40 0.00 +S 1115 5077 1 563093.104796202.10 0.00 +S 1115 5079 1 563134.104796230.80 0.00 +S 1115 5081 1 563175.004796259.50 0.00 +S 1115 5083 1 563216.004796288.20 0.00 +S 1115 5085 1 563257.004796316.80 0.00 +S 1115 5087 1 563297.904796345.50 0.00 +S 1115 5089 1 563338.904796374.20 0.00 +S 1115 5091 1 563379.804796402.90 0.00 +S 1115 5093 1 563420.804796431.60 0.00 +S 1115 5095 1 563461.704796460.20 0.00 +S 1115 5097 1 563502.704796488.90 0.00 +S 1115 5099 1 563543.704796517.60 0.00 +S 1115 5101 1 563584.604796546.30 0.00 +S 1115 5103 1 563625.604796574.90 0.00 +S 1115 5105 1 563666.504796603.60 0.00 +S 1115 5107 1 563707.504796632.30 0.00 +S 1115 5109 1 563748.404796661.00 0.00 +S 1115 5111 1 563789.404796689.70 0.00 +S 1115 5113 1 563830.404796718.30 0.00 +S 1115 5115 1 563871.304796747.00 0.00 +S 1115 5117 1 563912.304796775.70 0.00 +S 1115 5119 1 563953.204796804.40 0.00 +S 1115 5121 1 563994.204796833.10 0.00 +S 1115 5123 1 564035.204796861.70 0.00 +S 1115 5125 1 564076.104796890.40 0.00 +S 1115 5127 1 564117.104796919.10 0.00 +S 1115 5129 1 564158.004796947.80 0.00 +S 1115 5131 1 564199.004796976.40 0.00 +S 1115 5133 1 564239.904797005.10 0.00 +S 1115 5135 1 564280.904797033.80 0.00 +S 1117 4961 1 560746.304794497.80 0.00 +S 1117 4963 1 560787.204794526.50 0.00 +S 1117 4965 1 560828.204794555.10 0.00 +S 1117 4967 1 560869.104794583.80 0.00 +S 1117 4969 1 560910.104794612.50 0.00 +S 1117 4971 1 560951.104794641.20 0.00 +S 1117 4973 1 560992.004794669.90 0.00 +S 1117 4975 1 561033.004794698.50 0.00 +S 1117 4977 1 561073.904794727.20 0.00 +S 1117 4979 1 561114.904794755.90 0.00 +S 1117 4981 1 561155.804794784.60 0.00 +S 1117 4983 1 561196.804794813.30 0.00 +S 1117 4985 1 561237.804794841.90 0.00 +S 1117 4987 1 561278.704794870.60 0.00 +S 1117 4989 1 561319.704794899.30 0.00 +S 1117 4991 1 561360.604794928.00 0.00 +S 1117 4993 1 561401.604794956.70 0.00 +S 1117 4995 1 561442.504794985.30 0.00 +S 1117 4997 1 561483.504795014.00 0.00 +S 1117 4999 1 561524.504795042.70 0.00 +S 1117 5001 1 561565.404795071.40 0.00 +S 1117 5003 1 561606.404795100.00 0.00 +S 1117 5005 1 561647.304795128.70 0.00 +S 1117 5007 1 561688.304795157.40 0.00 +S 1117 5009 1 561729.204795186.10 0.00 +S 1117 5011 1 561770.204795214.80 0.00 +S 1117 5013 1 561811.204795243.40 0.00 +S 1117 5015 1 561852.104795272.10 0.00 +S 1117 5017 1 561893.104795300.80 0.00 +S 1117 5019 1 561934.004795329.50 0.00 +S 1117 5021 1 561975.004795358.20 0.00 +S 1117 5023 1 562015.904795386.80 0.00 +S 1117 5025 1 562056.904795415.50 0.00 +S 1117 5027 1 562097.904795444.20 0.00 +S 1117 5029 1 562138.804795472.90 0.00 +S 1117 5031 1 562179.804795501.50 0.00 +S 1117 5033 1 562220.704795530.20 0.00 +S 1117 5035 1 562261.704795558.90 0.00 +S 1117 5037 1 562302.704795587.60 0.00 +S 1117 5039 1 562343.604795616.30 0.00 +S 1117 5041 1 562384.604795644.90 0.00 +S 1117 5043 1 562425.504795673.60 0.00 +S 1117 5045 1 562466.504795702.30 0.00 +S 1117 5047 1 562507.404795731.00 0.00 +S 1117 5049 1 562548.404795759.70 0.00 +S 1117 5051 1 562589.404795788.30 0.00 +S 1117 5053 1 562630.304795817.00 0.00 +S 1117 5055 1 562671.304795845.70 0.00 +S 1117 5057 1 562712.204795874.40 0.00 +S 1117 5059 1 562753.204795903.10 0.00 +S 1117 5061 1 562794.104795931.70 0.00 +S 1117 5063 1 562835.104795960.40 0.00 +S 1117 5065 1 562876.104795989.10 0.00 +S 1117 5067 1 562917.004796017.80 0.00 +S 1117 5069 1 562958.004796046.40 0.00 +S 1117 5071 1 562998.904796075.10 0.00 +S 1117 5073 1 563039.904796103.80 0.00 +S 1117 5075 1 563080.804796132.50 0.00 +S 1117 5077 1 563121.804796161.20 0.00 +S 1117 5079 1 563162.804796189.80 0.00 +S 1117 5081 1 563203.704796218.50 0.00 +S 1117 5083 1 563244.704796247.20 0.00 +S 1117 5085 1 563285.604796275.90 0.00 +S 1117 5087 1 563326.604796304.60 0.00 +S 1117 5089 1 563367.604796333.20 0.00 +S 1117 5091 1 563408.504796361.90 0.00 +S 1117 5093 1 563449.504796390.60 0.00 +S 1117 5095 1 563490.404796419.30 0.00 +S 1117 5097 1 563531.404796448.00 0.00 +S 1117 5099 1 563572.304796476.60 0.00 +S 1117 5101 1 563613.304796505.30 0.00 +S 1117 5103 1 563654.304796534.00 0.00 +S 1117 5105 1 563695.204796562.70 0.00 +S 1117 5107 1 563736.204796591.30 0.00 +S 1117 5109 1 563777.104796620.00 0.00 +S 1117 5111 1 563818.104796648.70 0.00 +S 1117 5113 1 563859.004796677.40 0.00 +S 1117 5115 1 563900.004796706.10 0.00 +S 1117 5117 1 563941.004796734.70 0.00 +S 1117 5119 1 563981.904796763.40 0.00 +S 1117 5121 1 564022.904796792.10 0.00 +S 1117 5123 1 564063.804796820.80 0.00 +S 1117 5125 1 564104.804796849.50 0.00 +S 1117 5127 1 564145.704796878.10 0.00 +S 1117 5129 1 564186.704796906.80 0.00 +S 1117 5131 1 564227.704796935.50 0.00 +S 1117 5133 1 564268.604796964.20 0.00 +S 1117 5135 1 564309.604796992.80 0.00 +S 1119 4961 1 560774.904794456.80 0.00 +S 1119 4963 1 560815.904794485.50 0.00 +S 1119 4965 1 560856.904794514.20 0.00 +S 1119 4967 1 560897.804794542.90 0.00 +S 1119 4969 1 560938.804794571.50 0.00 +S 1119 4971 1 560979.704794600.20 0.00 +S 1119 4973 1 561020.704794628.90 0.00 +S 1119 4975 1 561061.604794657.60 0.00 +S 1119 4977 1 561102.604794686.30 0.00 +S 1119 4979 1 561143.604794714.90 0.00 +S 1119 4981 1 561184.504794743.60 0.00 +S 1119 4983 1 561225.504794772.30 0.00 +S 1119 4985 1 561266.404794801.00 0.00 +S 1119 4987 1 561307.404794829.70 0.00 +S 1119 4989 1 561348.304794858.30 0.00 +S 1119 4991 1 561389.304794887.00 0.00 +S 1119 4993 1 561430.304794915.70 0.00 +S 1119 4995 1 561471.204794944.40 0.00 +S 1119 4997 1 561512.204794973.10 0.00 +S 1119 4999 1 561553.104795001.70 0.00 +S 1119 5001 1 561594.104795030.40 0.00 +S 1119 5003 1 561635.104795059.10 0.00 +S 1119 5005 1 561676.004795087.80 0.00 +S 1119 5007 1 561717.004795116.40 0.00 +S 1119 5009 1 561757.904795145.10 0.00 +S 1119 5011 1 561798.904795173.80 0.00 +S 1119 5013 1 561839.804795202.50 0.00 +S 1119 5015 1 561880.804795231.20 0.00 +S 1119 5017 1 561921.804795259.80 0.00 +S 1119 5019 1 561962.704795288.50 0.00 +S 1119 5021 1 562003.704795317.20 0.00 +S 1119 5023 1 562044.604795345.90 0.00 +S 1119 5025 1 562085.604795374.60 0.00 +S 1119 5027 1 562126.504795403.20 0.00 +S 1119 5029 1 562167.504795431.90 0.00 +S 1119 5031 1 562208.504795460.60 0.00 +S 1119 5033 1 562249.404795489.30 0.00 +S 1119 5035 1 562290.404795517.90 0.00 +S 1119 5037 1 562331.304795546.60 0.00 +S 1119 5039 1 562372.304795575.30 0.00 +S 1119 5041 1 562413.204795604.00 0.00 +S 1119 5043 1 562454.204795632.70 0.00 +S 1119 5045 1 562495.204795661.30 0.00 +S 1119 5047 1 562536.104795690.00 0.00 +S 1119 5049 1 562577.104795718.70 0.00 +S 1119 5051 1 562618.004795747.40 0.00 +S 1119 5053 1 562659.004795776.10 0.00 +S 1119 5055 1 562699.904795804.70 0.00 +S 1119 5057 1 562740.904795833.40 0.00 +S 1119 5059 1 562781.904795862.10 0.00 +S 1119 5061 1 562822.804795890.80 0.00 +S 1119 5063 1 562863.804795919.50 0.00 +S 1119 5065 1 562904.704795948.10 0.00 +S 1119 5067 1 562945.704795976.80 0.00 +S 1119 5069 1 562986.704796005.50 0.00 +S 1119 5071 1 563027.604796034.20 0.00 +S 1119 5073 1 563068.604796062.80 0.00 +S 1119 5075 1 563109.504796091.50 0.00 +S 1119 5077 1 563150.504796120.20 0.00 +S 1119 5079 1 563191.404796148.90 0.00 +S 1119 5081 1 563232.404796177.60 0.00 +S 1119 5083 1 563273.404796206.20 0.00 +S 1119 5085 1 563314.304796234.90 0.00 +S 1119 5087 1 563355.304796263.60 0.00 +S 1119 5089 1 563396.204796292.30 0.00 +S 1119 5091 1 563437.204796321.00 0.00 +S 1119 5093 1 563478.104796349.60 0.00 +S 1119 5095 1 563519.104796378.30 0.00 +S 1119 5097 1 563560.104796407.00 0.00 +S 1119 5099 1 563601.004796435.70 0.00 +S 1119 5101 1 563642.004796464.40 0.00 +S 1119 5103 1 563682.904796493.00 0.00 +S 1119 5105 1 563723.904796521.70 0.00 +S 1119 5107 1 563764.804796550.40 0.00 +S 1119 5109 1 563805.804796579.10 0.00 +S 1119 5111 1 563846.804796607.70 0.00 +S 1119 5113 1 563887.704796636.40 0.00 +S 1119 5115 1 563928.704796665.10 0.00 +S 1119 5117 1 563969.604796693.80 0.00 +S 1119 5119 1 564010.604796722.50 0.00 +S 1119 5121 1 564051.604796751.10 0.00 +S 1119 5123 1 564092.504796779.80 0.00 +S 1119 5125 1 564133.504796808.50 0.00 +S 1119 5127 1 564174.404796837.20 0.00 +S 1119 5129 1 564215.404796865.90 0.00 +S 1119 5131 1 564256.304796894.50 0.00 +S 1119 5133 1 564297.304796923.20 0.00 +S 1119 5135 1 564338.304796951.90 0.00 +S 1121 4961 1 560803.604794415.90 0.00 +S 1121 4963 1 560844.604794444.60 0.00 +S 1121 4965 1 560885.504794473.20 0.00 +S 1121 4967 1 560926.504794501.90 0.00 +S 1121 4969 1 560967.504794530.60 0.00 +S 1121 4971 1 561008.404794559.30 0.00 +S 1121 4973 1 561049.404794587.90 0.00 +S 1121 4975 1 561090.304794616.60 0.00 +S 1121 4977 1 561131.304794645.30 0.00 +S 1121 4979 1 561172.204794674.00 0.00 +S 1121 4981 1 561213.204794702.70 0.00 +S 1121 4983 1 561254.204794731.30 0.00 +S 1121 4985 1 561295.104794760.00 0.00 +S 1121 4987 1 561336.104794788.70 0.00 +S 1121 4989 1 561377.004794817.40 0.00 +S 1121 4991 1 561418.004794846.10 0.00 +S 1121 4993 1 561458.904794874.70 0.00 +S 1121 4995 1 561499.904794903.40 0.00 +S 1121 4997 1 561540.904794932.10 0.00 +S 1121 4999 1 561581.804794960.80 0.00 +S 1121 5001 1 561622.804794989.50 0.00 +S 1121 5003 1 561663.704795018.10 0.00 +S 1121 5005 1 561704.704795046.80 0.00 +S 1121 5007 1 561745.604795075.50 0.00 +S 1121 5009 1 561786.604795104.20 0.00 +S 1121 5011 1 561827.604795132.80 0.00 +S 1121 5013 1 561868.504795161.50 0.00 +S 1121 5015 1 561909.504795190.20 0.00 +S 1121 5017 1 561950.404795218.90 0.00 +S 1121 5019 1 561991.404795247.60 0.00 +S 1121 5021 1 562032.304795276.20 0.00 +S 1121 5023 1 562073.304795304.90 0.00 +S 1121 5025 1 562114.304795333.60 0.00 +S 1121 5027 1 562155.204795362.30 0.00 +S 1121 5029 1 562196.204795391.00 0.00 +S 1121 5031 1 562237.104795419.60 0.00 +S 1121 5033 1 562278.104795448.30 0.00 +S 1121 5035 1 562319.104795477.00 0.00 +S 1121 5037 1 562360.004795505.70 0.00 +S 1121 5039 1 562401.004795534.30 0.00 +S 1121 5041 1 562441.904795563.00 0.00 +S 1121 5043 1 562482.904795591.70 0.00 +S 1121 5045 1 562523.804795620.40 0.00 +S 1121 5047 1 562564.804795649.10 0.00 +S 1121 5049 1 562605.804795677.70 0.00 +S 1121 5051 1 562646.704795706.40 0.00 +S 1121 5053 1 562687.704795735.10 0.00 +S 1121 5055 1 562728.604795763.80 0.00 +S 1121 5057 1 562769.604795792.50 0.00 +S 1121 5059 1 562810.504795821.10 0.00 +S 1121 5061 1 562851.504795849.80 0.00 +S 1121 5063 1 562892.504795878.50 0.00 +S 1121 5065 1 562933.404795907.20 0.00 +S 1121 5067 1 562974.404795935.90 0.00 +S 1121 5069 1 563015.304795964.50 0.00 +S 1121 5071 1 563056.304795993.20 0.00 +S 1121 5073 1 563097.204796021.90 0.00 +S 1121 5075 1 563138.204796050.60 0.00 +S 1121 5077 1 563179.204796079.20 0.00 +S 1121 5079 1 563220.104796107.90 0.00 +S 1121 5081 1 563261.104796136.60 0.00 +S 1121 5083 1 563302.004796165.30 0.00 +S 1121 5085 1 563343.004796194.00 0.00 +S 1121 5087 1 563384.004796222.60 0.00 +S 1121 5089 1 563424.904796251.30 0.00 +S 1121 5091 1 563465.904796280.00 0.00 +S 1121 5093 1 563506.804796308.70 0.00 +S 1121 5095 1 563547.804796337.40 0.00 +S 1121 5097 1 563588.704796366.00 0.00 +S 1121 5099 1 563629.704796394.70 0.00 +S 1121 5101 1 563670.704796423.40 0.00 +S 1121 5103 1 563711.604796452.10 0.00 +S 1121 5105 1 563752.604796480.80 0.00 +S 1121 5107 1 563793.504796509.40 0.00 +S 1121 5109 1 563834.504796538.10 0.00 +S 1121 5111 1 563875.404796566.80 0.00 +S 1121 5113 1 563916.404796595.50 0.00 +S 1121 5115 1 563957.404796624.10 0.00 +S 1121 5117 1 563998.304796652.80 0.00 +S 1121 5119 1 564039.304796681.50 0.00 +S 1121 5121 1 564080.204796710.20 0.00 +S 1121 5123 1 564121.204796738.90 0.00 +S 1121 5125 1 564162.104796767.50 0.00 +S 1121 5127 1 564203.104796796.20 0.00 +S 1121 5129 1 564244.104796824.90 0.00 +S 1121 5131 1 564285.004796853.60 0.00 +S 1121 5133 1 564326.004796882.30 0.00 +S 1121 5135 1 564366.904796910.90 0.00 +S 1123 4961 1 560832.304794374.90 0.00 +S 1123 4963 1 560873.304794403.60 0.00 +S 1123 4965 1 560914.204794432.30 0.00 +S 1123 4967 1 560955.204794461.00 0.00 +S 1123 4969 1 560996.104794489.60 0.00 +S 1123 4971 1 561037.104794518.30 0.00 +S 1123 4973 1 561078.004794547.00 0.00 +S 1123 4975 1 561119.004794575.70 0.00 +S 1123 4977 1 561160.004794604.30 0.00 +S 1123 4979 1 561200.904794633.00 0.00 +S 1123 4981 1 561241.904794661.70 0.00 +S 1123 4983 1 561282.804794690.40 0.00 +S 1123 4985 1 561323.804794719.10 0.00 +S 1123 4987 1 561364.704794747.70 0.00 +S 1123 4989 1 561405.704794776.40 0.00 +S 1123 4991 1 561446.704794805.10 0.00 +S 1123 4993 1 561487.604794833.80 0.00 +S 1123 4995 1 561528.604794862.50 0.00 +S 1123 4997 1 561569.504794891.10 0.00 +S 1123 4999 1 561610.504794919.80 0.00 +S 1123 5001 1 561651.504794948.50 0.00 +S 1123 5003 1 561692.404794977.20 0.00 +S 1123 5005 1 561733.404795005.90 0.00 +S 1123 5007 1 561774.304795034.50 0.00 +S 1123 5009 1 561815.304795063.20 0.00 +S 1123 5011 1 561856.204795091.90 0.00 +S 1123 5013 1 561897.204795120.60 0.00 +S 1123 5015 1 561938.204795149.20 0.00 +S 1123 5017 1 561979.104795177.90 0.00 +S 1123 5019 1 562020.104795206.60 0.00 +S 1123 5021 1 562061.004795235.30 0.00 +S 1123 5023 1 562102.004795264.00 0.00 +S 1123 5025 1 562142.904795292.60 0.00 +S 1123 5027 1 562183.904795321.30 0.00 +S 1123 5029 1 562224.904795350.00 0.00 +S 1123 5031 1 562265.804795378.70 0.00 +S 1123 5033 1 562306.804795407.40 0.00 +S 1123 5035 1 562347.704795436.00 0.00 +S 1123 5037 1 562388.704795464.70 0.00 +S 1123 5039 1 562429.604795493.40 0.00 +S 1123 5041 1 562470.604795522.10 0.00 +S 1123 5043 1 562511.604795550.70 0.00 +S 1123 5045 1 562552.504795579.40 0.00 +S 1123 5047 1 562593.504795608.10 0.00 +S 1123 5049 1 562634.404795636.80 0.00 +S 1123 5051 1 562675.404795665.50 0.00 +S 1123 5053 1 562716.304795694.10 0.00 +S 1123 5055 1 562757.304795722.80 0.00 +S 1123 5057 1 562798.304795751.50 0.00 +S 1123 5059 1 562839.204795780.20 0.00 +S 1123 5061 1 562880.204795808.90 0.00 +S 1123 5063 1 562921.104795837.50 0.00 +S 1123 5065 1 562962.104795866.20 0.00 +S 1123 5067 1 563003.104795894.90 0.00 +S 1123 5069 1 563044.004795923.60 0.00 +S 1123 5071 1 563085.004795952.30 0.00 +S 1123 5073 1 563125.904795980.90 0.00 +S 1123 5075 1 563166.904796009.60 0.00 +S 1123 5077 1 563207.804796038.30 0.00 +S 1123 5079 1 563248.804796067.00 0.00 +S 1123 5081 1 563289.804796095.60 0.00 +S 1123 5083 1 563330.704796124.30 0.00 +S 1123 5085 1 563371.704796153.00 0.00 +S 1123 5087 1 563412.604796181.70 0.00 +S 1123 5089 1 563453.604796210.40 0.00 +S 1123 5091 1 563494.504796239.00 0.00 +S 1123 5093 1 563535.504796267.70 0.00 +S 1123 5095 1 563576.504796296.40 0.00 +S 1123 5097 1 563617.404796325.10 0.00 +S 1123 5099 1 563658.404796353.80 0.00 +S 1123 5101 1 563699.304796382.40 0.00 +S 1123 5103 1 563740.304796411.10 0.00 +S 1123 5105 1 563781.204796439.80 0.00 +S 1123 5107 1 563822.204796468.50 0.00 +S 1123 5109 1 563863.204796497.20 0.00 +S 1123 5111 1 563904.104796525.80 0.00 +S 1123 5113 1 563945.104796554.50 0.00 +S 1123 5115 1 563986.004796583.20 0.00 +S 1123 5117 1 564027.004796611.90 0.00 +S 1123 5119 1 564068.004796640.50 0.00 +S 1123 5121 1 564108.904796669.20 0.00 +S 1123 5123 1 564149.904796697.90 0.00 +S 1123 5125 1 564190.804796726.60 0.00 +S 1123 5127 1 564231.804796755.30 0.00 +S 1123 5129 1 564272.704796783.90 0.00 +S 1123 5131 1 564313.704796812.60 0.00 +S 1123 5133 1 564354.704796841.30 0.00 +S 1123 5135 1 564395.604796870.00 0.00 diff --git a/data/docs/campaign_manifest.json b/data/docs/campaign_manifest.json new file mode 100644 index 0000000..ccda9fc --- /dev/null +++ b/data/docs/campaign_manifest.json @@ -0,0 +1,113 @@ +{ + "timeline": [ + { + "date": "2020-08-08", + "event": "D\u00e9but enregistrements continus OBN", + "type": "start" + }, + { + "date": "2020-08-15", + "event": "D\u00e9ploiement AUV - Zone principale", + "type": "operation" + }, + { + "date": "2020-08-24", + "event": "Premiers fichiers RAW g\u00e9n\u00e9r\u00e9s", + "type": "data" + }, + { + "date": "2020-09-10", + "event": "Phase AUV intensive - Couverture maximale", + "type": "operation" + }, + { + "date": "2020-09-18", + "event": "R\u00e9cup\u00e9ration finale des AUV + OBN", + "type": "milestone" + }, + { + "date": "2020-09-21", + "event": "R\u00e9cup\u00e9ration AUV zones difficiles (Trawler)", + "type": "operation" + }, + { + "date": "2020-09-22", + "event": "Derni\u00e8res zones AUV Remaining", + "type": "operation" + }, + { + "date": "2020-09-23", + "event": "Fin de campagne - Tous \u00e9quipements r\u00e9cup\u00e9r\u00e9s", + "type": "end" + } + ], + "documents": [ + { + "name": "GUNDALF Array Report", + "file": "S320A08a10-GUNDALF array modelling suite - Array report.pdf", + "category": "Sources" + }, + { + "name": "Acquisition Parameters", + "file": "SBGS_Sete_SpiceRack_Acquisition_Parameters_Spreadsheet.xlsx", + "category": "Acquisition" + }, + { + "name": "Technical Specs OBN", + "file": "SBGS Standard Technical Specs for Node Surveys v10.docx", + "category": "Specifications" + }, + { + "name": "Source Preplots (SPS)", + "file": "SeteSxPreplots.s01", + "category": "Geometry" + }, + { + "name": "Receiver Preplots (SPS)", + "file": "SeteRxPreplots.r01", + "category": "Geometry" + }, + { + "name": "Final PickUp Map", + "file": "Final_PickUp_20200918.png", + "category": "Maps" + } + ], + "snapshots": [ + { + "date": "2020-09-18", + "name": "Final_PickUp_918", + "file": "Final_PickUp_20200918.png" + }, + { + "date": "2020-09-18-Copier(1)", + "name": "Final_PickUp_918-Copier(1)", + "file": "Final_PickUp_20200918-Copier(1).png" + }, + { + "date": "2020-09-22", + "name": "Sete_AUV_Remaining_922", + "file": "Sete_AUV_Remaining_20200922.png" + }, + { + "date": "2020-09-22-Copier(1)", + "name": "Sete_AUV_Remaining_922-Copier(1)", + "file": "Sete_AUV_Remaining_20200922-Copier(1).png" + }, + { + "date": "2020-09-22bis", + "name": "Sete_AUV_Remaining_922bis", + "file": "Sete_AUV_Remaining_20200922bis.png" + }, + { + "date": "2020-09-21", + "name": "Sete_AUV_Trawler_921", + "file": "Sete_AUV_Trawler_20200921.png" + }, + { + "date": "2020-09-22", + "name": "Sete_AUV_Trawler_922", + "file": "Sete_AUV_Trawler_20200922.png" + } + ] +} \ No newline at end of file diff --git a/data/h5/auto_221_145435_b0_rsn80274_seq1_1596898430.h5 b/data/h5/auto_221_145435_b0_rsn80274_seq1_1596898430.h5 new file mode 100644 index 0000000..ba25c87 Binary files /dev/null and b/data/h5/auto_221_145435_b0_rsn80274_seq1_1596898430.h5 differ diff --git a/data/h5/auto_224_160921_b12_rsn2221_seq1_1597159766.h5 b/data/h5/auto_224_160921_b12_rsn2221_seq1_1597159766.h5 new file mode 100644 index 0000000..5caf6de Binary files /dev/null and b/data/h5/auto_224_160921_b12_rsn2221_seq1_1597159766.h5 differ diff --git a/data/h5/auto_224_161538_b25_rsn3541_seq1_1597159797.h5 b/data/h5/auto_224_161538_b25_rsn3541_seq1_1597159797.h5 new file mode 100644 index 0000000..a3895fc Binary files /dev/null and b/data/h5/auto_224_161538_b25_rsn3541_seq1_1597159797.h5 differ diff --git a/data/h5/auto_224_162759_b17_rsn21093_seq1_1597159798.h5 b/data/h5/auto_224_162759_b17_rsn21093_seq1_1597159798.h5 new file mode 100644 index 0000000..ef58924 Binary files /dev/null and b/data/h5/auto_224_162759_b17_rsn21093_seq1_1597159798.h5 differ diff --git a/data/h5/auto_225_173539_b103_rsn51079_seq1_1597252375.h5 b/data/h5/auto_225_173539_b103_rsn51079_seq1_1597252375.h5 new file mode 100644 index 0000000..5b550ed Binary files /dev/null and b/data/h5/auto_225_173539_b103_rsn51079_seq1_1597252375.h5 differ diff --git a/data/h5/auto_225_173616_b77_rsn2690_seq1_1597250647.h5 b/data/h5/auto_225_173616_b77_rsn2690_seq1_1597250647.h5 new file mode 100644 index 0000000..002efe6 Binary files /dev/null and b/data/h5/auto_225_173616_b77_rsn2690_seq1_1597250647.h5 differ diff --git a/data/h5/auto_225_173619_b105_rsn4162_seq1_1597252399.h5 b/data/h5/auto_225_173619_b105_rsn4162_seq1_1597252399.h5 new file mode 100644 index 0000000..15991ba Binary files /dev/null and b/data/h5/auto_225_173619_b105_rsn4162_seq1_1597252399.h5 differ diff --git a/data/h5/auto_225_173619_b56_rsn2189_seq1_1597238700.h5 b/data/h5/auto_225_173619_b56_rsn2189_seq1_1597238700.h5 new file mode 100644 index 0000000..b34b912 Binary files /dev/null and b/data/h5/auto_225_173619_b56_rsn2189_seq1_1597238700.h5 differ diff --git a/data/h5/auto_225_173619_b82_rsn72636_seq1_1597250071.h5 b/data/h5/auto_225_173619_b82_rsn72636_seq1_1597250071.h5 new file mode 100644 index 0000000..3e3546a Binary files /dev/null and b/data/h5/auto_225_173619_b82_rsn72636_seq1_1597250071.h5 differ diff --git a/data/h5/auto_225_173623_b21_rsn12296_seq1_1597227594.h5 b/data/h5/auto_225_173623_b21_rsn12296_seq1_1597227594.h5 new file mode 100644 index 0000000..eda3280 Binary files /dev/null and b/data/h5/auto_225_173623_b21_rsn12296_seq1_1597227594.h5 differ diff --git a/data/index.json b/data/index.json new file mode 100755 index 0000000..f1f0884 --- /dev/null +++ b/data/index.json @@ -0,0 +1,438 @@ +{ + "nodes": { + "221": { + "position": { + "easting": 560100.0, + "northing": 4795500.0, + "depth": 35.0 + }, + "files": [ + { + "filename": "auto_221_145435_b0_rsn80274_seq1_1596898430.h5", + "date": "2020-08-08", + "timestamp": 1596898430, + "duration_sec": 20.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 0.16 + } + ] + }, + "224": { + "position": { + "easting": 560500.0, + "northing": 4795800.0, + "depth": 40.0 + }, + "files": [ + { + "filename": "auto_224_160921_b12_rsn2221_seq1_1597159766.h5", + "date": "2020-08-11", + "timestamp": 1597159766, + "duration_sec": 2390.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 24.44 + }, + { + "filename": "auto_224_161538_b25_rsn3541_seq1_1597159797.h5", + "date": "2020-08-11", + "timestamp": 1597159797, + "duration_sec": 2740.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 27.69 + }, + { + "filename": "auto_224_162759_b17_rsn21093_seq1_1597159798.h5", + "date": "2020-08-11", + "timestamp": 1597159798, + "duration_sec": 3480.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 37.62 + } + ] + }, + "225": { + "position": { + "easting": 560900.0, + "northing": 4796100.0, + "depth": 45.0 + }, + "files": [ + { + "filename": "auto_225_173539_b103_rsn51079_seq1_1597252375.h5", + "date": "2020-08-12", + "timestamp": 1597252375, + "duration_sec": 1360.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 15.44 + }, + { + "filename": "auto_225_173616_b77_rsn2690_seq1_1597250647.h5", + "date": "2020-08-12", + "timestamp": 1597250647, + "duration_sec": 3120.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 35.27 + }, + { + "filename": "auto_225_173619_b105_rsn4162_seq1_1597252399.h5", + "date": "2020-08-12", + "timestamp": 1597252399, + "duration_sec": 1370.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 15.49 + }, + { + "filename": "auto_225_173619_b56_rsn2189_seq1_1597238700.h5", + "date": "2020-08-12", + "timestamp": 1597238700, + "duration_sec": 15070.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 167.57 + }, + { + "filename": "auto_225_173619_b82_rsn72636_seq1_1597250071.h5", + "date": "2020-08-12", + "timestamp": 1597250071, + "duration_sec": 3700.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 41.34 + }, + { + "filename": "auto_225_173623_b21_rsn12296_seq1_1597227594.h5", + "date": "2020-08-12", + "timestamp": 1597227594, + "duration_sec": 26180.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 289.17 + }, + { + "filename": "auto_225_173623_b95_rsn80274_seq1_1597244605.h5", + "date": "2020-08-12", + "timestamp": 1597244605, + "duration_sec": 9170.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 102.01 + }, + { + "filename": "auto_225_173630_b65_rsn12358_seq1_1597238705.h5", + "date": "2020-08-12", + "timestamp": 1597238705, + "duration_sec": 15080.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 163.32 + }, + { + "filename": "auto_225_173634_b2_rsn71476_seq1_1597217439.h5", + "date": "2020-08-12", + "timestamp": 1597217439, + "duration_sec": 36350.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 391.88 + }, + { + "filename": "auto_225_173634_b50_rsn51848_seq1_1597238697.h5", + "date": "2020-08-12", + "timestamp": 1597238697, + "duration_sec": 15090.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 165.26 + } + ] + }, + "228": { + "position": { + "easting": 561300.0, + "northing": 4796400.0, + "depth": 42.0 + }, + "files": [ + { + "filename": "auto_228_063604_b16_rsn5819_seq1_1597419185.h5", + "date": "2020-08-14", + "timestamp": 1597419185, + "duration_sec": 54170.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 567.4 + }, + { + "filename": "auto_228_063604_b194_rsn3965_seq1_1597411770.h5", + "date": "2020-08-14", + "timestamp": 1597411770, + "duration_sec": 61590.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 691.99 + }, + { + "filename": "auto_228_063605_b77_rsn2690_seq1_1597256283.h5", + "date": "2020-08-12", + "timestamp": 1597256283, + "duration_sec": 217070.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 2460.93 + }, + { + "filename": "auto_228_064125_b26_rsn2128_seq1_1597414685.h5", + "date": "2020-08-14", + "timestamp": 1597414685, + "duration_sec": 58990.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 625.23 + }, + { + "filename": "auto_228_064125_b82_rsn72636_seq1_1597256285.h5", + "date": "2020-08-12", + "timestamp": 1597256285, + "duration_sec": 217390.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 2415.92 + }, + { + "filename": "auto_228_064126_b56_rsn2189_seq1_1597256285.h5", + "date": "2020-08-12", + "timestamp": 1597256285, + "duration_sec": 217390.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 2479.67 + }, + { + "filename": "auto_228_064126_b90_rsn2011_seq1_1597430558.h5", + "date": "2020-08-14", + "timestamp": 1597430558, + "duration_sec": 43120.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 469.27 + }, + { + "filename": "auto_228_064131_b187_rsn80304_seq1_1597408779.h5", + "date": "2020-08-14", + "timestamp": 1597408779, + "duration_sec": 64900.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 727.37 + }, + { + "filename": "auto_228_064131_b3_rsn4589_seq1_1597419457.h5", + "date": "2020-08-14", + "timestamp": 1597419457, + "duration_sec": 54230.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 608.76 + }, + { + "filename": "auto_228_064131_b65_rsn12358_seq1_1597256199.h5", + "date": "2020-08-12", + "timestamp": 1597256199, + "duration_sec": 217480.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 2405.57 + }, + { + "filename": "auto_228_064210_b50_rsn51848_seq1_1597256250.h5", + "date": "2020-08-12", + "timestamp": 1597256250, + "duration_sec": 217470.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 2444.06 + }, + { + "filename": "auto_228_064212_b29_rsn2648_seq1_1597414690.h5", + "date": "2020-08-14", + "timestamp": 1597414690, + "duration_sec": 59030.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 622.02 + }, + { + "filename": "auto_228_064254_b21_rsn12296_seq1_1597256218.h5", + "date": "2020-08-12", + "timestamp": 1597256218, + "duration_sec": 217550.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 2398.41 + }, + { + "filename": "auto_228_064256_b181_rsn6523_seq1_1597432534.h5", + "date": "2020-08-14", + "timestamp": 1597432534, + "duration_sec": 41240.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 451.2 + }, + { + "filename": "auto_228_175058_b130_rsn3747_seq1_1597513819.h5", + "date": "2020-08-15", + "timestamp": 1597513819, + "duration_sec": 30.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 0.36 + }, + { + "filename": "auto_228_180741_b130_rsn3747_seq1_1597514438.h5", + "date": "2020-08-15", + "timestamp": 1597514438, + "duration_sec": 420.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 4.71 + } + ] + }, + "229": { + "position": { + "easting": 560700.0, + "northing": 4796700.0, + "depth": 38.0 + }, + "files": [ + { + "filename": "auto_229_132551_b128_rsn4049_seq1_1597571215.h5", + "date": "2020-08-16", + "timestamp": 1597571215, + "duration_sec": 3600.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 40.72 + }, + { + "filename": "auto_229_132815_b128_rsn4049_seq1_1597571215.h5", + "date": "2020-08-16", + "timestamp": 1597571215, + "duration_sec": 3600.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 40.72 + }, + { + "filename": "auto_229_142731_b21_rsn12296_seq1_1597475138.h5", + "date": "2020-08-15", + "timestamp": 1597475138, + "duration_sec": 112910.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1156.73 + } + ] + }, + "230": { + "position": { + "easting": 561100.0, + "northing": 4795200.0, + "depth": 50.0 + }, + "files": [ + { + "filename": "auto_230_063854_b12_rsn21524_seq1_1597516594.h5", + "date": "2020-08-15", + "timestamp": 1597516594, + "duration_sec": 129730.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1409.06 + }, + { + "filename": "auto_230_064032_b10_rsn21475_seq1_1597516582.h5", + "date": "2020-08-15", + "timestamp": 1597516582, + "duration_sec": 129840.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1425.65 + }, + { + "filename": "auto_230_070712_b18_rsn80310_seq1_1597497040.h5", + "date": "2020-08-15", + "timestamp": 1597497040, + "duration_sec": 150980.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1660.22 + }, + { + "filename": "auto_230_070815_b27_rsn6157_seq1_1597516628.h5", + "date": "2020-08-15", + "timestamp": 1597516628, + "duration_sec": 131460.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1357.8 + }, + { + "filename": "auto_230_070838_b16_rsn5819_seq1_1597475191.h5", + "date": "2020-08-15", + "timestamp": 1597475191, + "duration_sec": 172920.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1813.61 + }, + { + "filename": "auto_230_073833_b23_rsn3078_seq1_1597498598.h5", + "date": "2020-08-15", + "timestamp": 1597498598, + "duration_sec": 151310.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 1621.03 + } + ] + }, + "289": { + "position": { + "easting": 560300.0, + "northing": 4796900.0, + "depth": 33.0 + }, + "files": [ + { + "filename": "auto_289_090651_b0_rsn4410_seq1_1571216697.h5", + "date": "2019-10-16", + "timestamp": 1571216697, + "duration_sec": 30.0, + "sample_rate": 500, + "channels": 4, + "size_mb": 0.26 + } + ] + } + }, + "dates": [ + "2019-10-16", + "2020-08-08", + "2020-08-11", + "2020-08-12", + "2020-08-14", + "2020-08-15", + "2020-08-16" + ], + "generated": "2026-02-05T15:05:56.229887", + "total_files": 40 +} \ No newline at end of file diff --git a/frontend_src/App.tsx b/frontend_src/App.tsx new file mode 100644 index 0000000..b759fc3 --- /dev/null +++ b/frontend_src/App.tsx @@ -0,0 +1,276 @@ +import { useState, useEffect, useCallback } from 'react'; +import { MapContainer, TileLayer } from 'react-leaflet'; +import NodeMarkers from './components/NodeMarkers'; +import Sidebar from './components/Sidebar'; +import SeismicSection from './SeismicSection'; +import H5Coverage from './components/H5Coverage'; +import DataDocumentation from './components/DataDocumentation'; +import H5Dashboard from './components/H5Dashboard'; +import CampaignDocs from "./components/CampaignDocs"; +import { Node, DataWindow } from './types'; + +const API_BASE = '/seismic/api'; +const DEFAULT_CENTER: [number, number] = [43.40, 3.70]; + +function App() { + const [nodes, setNodes] = useState([]); + const [dates, setDates] = useState([]); + const [selectedDate, setSelectedDate] = useState(''); + const [selectedChannel, setSelectedChannel] = useState('ch0'); + const [selectedNode, setSelectedNode] = useState(null); + const [currentTime, setCurrentTime] = useState(0); + const [dataWindow, setDataWindow] = useState(null); + const [loading, setLoading] = useState(true); + const [sampleRate, setSampleRate] = useState(200); + const [showOnlyWithData, setShowOnlyWithData] = useState(false); + const [rmsTimeline, setRmsTimeline] = useState(null); + const [allAdcValues, setAllAdcValues] = useState>({}); + const [isPlaying, setIsPlaying] = useState(false); + const [playSpeed, setPlaySpeed] = useState(1); + const [chatOpen, setChatOpen] = useState(false); + const [chatMsg, setChatMsg] = useState(''); + const [chatHistory, setChatHistory] = useState([]); + const [showSection, setShowSection] = useState(false); + const [showDashboard, setShowDashboard] = useState(false); + const [showCampaignDocs, setShowCampaignDocs] = useState(false); + const [showDocumentation, setShowDocumentation] = useState(false); + const [showCoverage, setShowCoverage] = useState(false); + const [migrationStatus, setMigrationStatus] = useState(null); + + // 🔗 Deep-linking: Lire les paramètres URL au démarrage + useEffect(() => { + const params = new URLSearchParams(window.location.search); + + const urlDate = params.get('date'); + const urlChannel = params.get('channel'); + const urlTime = params.get('time'); + const urlNode = params.get('node'); + + if (urlDate) setSelectedDate(urlDate); + if (urlChannel) setSelectedChannel(urlChannel); + if (urlTime) setCurrentTime(parseFloat(urlTime)); + if (urlNode && nodes.length > 0) { + const node = nodes.find(n => n.id === urlNode); + if (node) setSelectedNode(node); + } + }, [nodes]); // Se déclenche quand les nodes sont chargés + + // 🔗 Deep-linking: Synchroniser l'URL quand les états changent + useEffect(() => { + const params = new URLSearchParams(); + + if (selectedDate) params.set('date', selectedDate); + if (selectedChannel) params.set('channel', selectedChannel); + if (currentTime > 1000000) params.set('time', currentTime.toString()); + if (selectedNode) params.set('node', selectedNode.id); + + const newUrl = `${window.location.pathname}?${params.toString()}`; + window.history.pushState({}, '', newUrl); + }, [selectedDate, selectedChannel, currentTime, selectedNode]); + + useEffect(() => { + fetch(`${API_BASE}/nodes`).then(r => r.json()).then(data => { + setNodes(data.nodes || []); + setSampleRate(data.sampleRateHz || 200); + setLoading(false); + }); + }, []); + + useEffect(() => { + fetch(`${API_BASE}/dates`).then(r => r.json()).then(data => { + const dateList = data.dates || []; + setDates(dateList); + if (dateList.length > 0 && !selectedDate) setSelectedDate(dateList[dateList.length - 1]); + }); + }, []); + + // Polling de la migration + useEffect(() => { + const checkStatus = () => { + fetch(`${API_BASE}/migration-status`) + .then(r => r.json()) + .then(data => setMigrationStatus(data)) + .catch(() => {}); + }; + const interval = setInterval(checkStatus, 5000); + checkStatus(); + return () => clearInterval(interval); + }, []); + + useEffect(() => { + if (!selectedDate || !selectedChannel) return; + setRmsTimeline(null); + fetch(`${API_BASE}/rms-timeline?date=${selectedDate}&channel=${selectedChannel}`) + .then(res => res.json()) + .then(data => { + if (data && data.nodes && Object.keys(data.nodes).length > 0) { + setRmsTimeline(data); + const allPts = Object.values(data.nodes).flat() as any[]; + if (allPts.length > 0) { + const minTs = Math.min(...allPts.map(p => p.ts)); + if (minTs > 1000000) setCurrentTime(minTs); + } + } else { + const ts = new Date(selectedDate).getTime() / 1000; + if (!isNaN(ts)) setCurrentTime(ts); + } + }); + }, [selectedDate, selectedChannel]); + + useEffect(() => { + if (!isPlaying) return; + const interval = setInterval(() => { + setCurrentTime(prev => prev + (60 * (playSpeed / 5))); + }, 200); + return () => clearInterval(interval); + }, [isPlaying, playSpeed]); + + useEffect(() => { + if (!rmsTimeline || !rmsTimeline.nodes || !currentTime) { + setAllAdcValues({}); + return; + } + const values: Record = {}; + Object.entries(rmsTimeline.nodes).forEach(([nodeId, dataPoints]) => { + const pts = dataPoints as any[]; + const point = pts.find(p => p.ts >= currentTime) || pts[pts.length - 1]; + if (point) values[nodeId] = point.rms; + }); + setAllAdcValues(values); + }, [currentTime, rmsTimeline]); + + const loadNodeData = useCallback(async () => { + if (!selectedNode || !selectedDate || currentTime < 1000000) return; + setLoading(true); + try { + const res = await fetch(`${API_BASE}/data?node=${selectedNode.id}&date=${selectedDate}&channel=${selectedChannel}&start=${Math.floor(currentTime)}`); + const data = await res.json(); + if (data && data.samples) setDataWindow({ ...data, node: selectedNode.id, date: selectedDate, channel: selectedChannel }); + else setDataWindow(null); + } catch (e) { setDataWindow(null); } + setLoading(false); + }, [selectedNode, selectedDate, selectedChannel, currentTime]); + + useEffect(() => { loadNodeData(); }, [selectedNode, selectedDate, selectedChannel]); + + const formatTime = (ts: number) => { + if (ts < 1000000) return '--:--:--'; + return new Date(ts * 1000).toISOString().substr(11, 8); + }; + + const sendChat = async () => { + if (!chatMsg) return; + const newHist = [...chatHistory, { role: 'user', text: chatMsg }]; + setChatHistory(newHist); + setChatMsg(''); + try { + const res = await fetch(`${API_BASE}/chat`, { + method: 'POST', headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ message: chatMsg }) + }); + const data = await res.json(); + setChatHistory([...newHist, { role: 'agent', text: data.response }]); + } catch (e) { setChatHistory([...newHist, { role: 'agent', text: "Erreur agent." }]); } + }; + + return (<> +
+
+

Seismic Viewer

+ + {migrationStatus && migrationStatus.processed_files < migrationStatus.total_files && ( +
+ ⚡ Migration : + {Math.round((migrationStatus.processed_files / migrationStatus.total_files) * 100)}% + ({migrationStatus.processed_files}/{migrationStatus.total_files}) +
+ )} + +
+ Nodes: {nodes.length} | Actifs: {nodes.filter(n=>n.hasDates).length} + + +
+
+ + + + + +
+
+ +
+ +
+ {[1, 10, 100, 1000].map(s => ( + + ))} +
+ {formatTime(currentTime)} + { setCurrentTime(Number(e.target.value)); setIsPlaying(false); }} /> +
+ +
+
+ + + + +
+ +
+ + setShowSection(false)} /> + +
+ {!chatOpen ? ( + + ) : ( +
+
+ Assistant + +
+
+ {chatHistory.map((m, i) => ( +
{m.text}
+ ))} +
+
+ setChatMsg(e.target.value)} onKeyPress={e => e.key === 'Enter' && sendChat()} aria-label="Poser une question" style={{ flex: 1, background: '#0f172a', border: '1px solid #334155', color: '#fff', padding: '5px', borderRadius: '4px', fontSize: '0.8rem' }} placeholder="Question…" /> + +
+
+ )} +
+ {showDashboard && ( +
+
+ + +
+
+ )} + {showCampaignDocs && ( +
+
+ + +
+
+ )} + {showDocumentation && setShowDocumentation(false)} />} + {showCoverage && setShowCoverage(false)} />} +
+ + ); +} + +export default App; diff --git a/frontend_src/App.tsx.backup b/frontend_src/App.tsx.backup new file mode 100644 index 0000000..cf7c579 --- /dev/null +++ b/frontend_src/App.tsx.backup @@ -0,0 +1,346 @@ +import { useState, useEffect, useCallback } from 'react'; +import { MapContainer, TileLayer } from 'react-leaflet'; +import NodeMarkers from './components/NodeMarkers'; +import Sidebar from './components/Sidebar'; +import SeismicSection from './SeismicSection'; +import H5Coverage from './components/H5Coverage'; +import DataDocumentation from './components/DataDocumentation'; +import H5Dashboard from './components/H5Dashboard'; +import CampaignDocs from "./components/CampaignDocs"; +import { Node, DataWindow } from './types'; + +const API_BASE = '/seismic/api'; +const DEFAULT_CENTER: [number, number] = [43.40, 3.70]; + +function App() { + const [nodes, setNodes] = useState([]); + const [dates, setDates] = useState([]); + const [selectedDate, setSelectedDate] = useState(''); + const [selectedChannel, setSelectedChannel] = useState('ch0'); + const [selectedNode, setSelectedNode] = useState(null); + const [currentTime, setCurrentTime] = useState(0); + const [dataWindow, setDataWindow] = useState(null); + const [loading, setLoading] = useState(true); + const [sampleRate, setSampleRate] = useState(200); + const [showOnlyWithData, setShowOnlyWithData] = useState(false); + const [rmsTimeline, setRmsTimeline] = useState(null); + const [allAdcValues, setAllAdcValues] = useState>({}); + const [isPlaying, setIsPlaying] = useState(false); + const [playSpeed, setPlaySpeed] = useState(1); + const [chatOpen, setChatOpen] = useState(false); + const [chatMsg, setChatMsg] = useState(''); + const [chatHistory, setChatHistory] = useState([]); + const [showSection, setShowSection] = useState(false); + const [showDashboard, setShowDashboard] = useState(false); + const [showCampaignDocs, setShowCampaignDocs] = useState(false); + const [showDocumentation, setShowDocumentation] = useState(false); + const [showCoverage, setShowCoverage] = useState(false); + const [migrationStatus, setMigrationStatus] = useState(null); + + // 🔗 Deep-linking: Lire les paramètres URL au démarrage + useEffect(() => { + const params = new URLSearchParams(window.location.search); + + const urlDate = params.get('date'); + const urlChannel = params.get('channel'); + const urlTime = params.get('time'); + + if (urlDate) setSelectedDate(urlDate); + if (urlChannel) setSelectedChannel(urlChannel); + if (urlTime) setCurrentTime(parseFloat(urlTime)); + if (urlNode && nodes.length > 0) { + const node = nodes.find(n => n.id === urlNode); + if (node) setSelectedNode(node); + } + }, [nodes]); // Se déclenche quand les nodes sont chargés + + // 🔗 Deep-linking: Synchroniser l'URL quand les états changent + useEffect(() => { + const params = new URLSearchParams(); + + if (selectedDate) params.set('date', selectedDate); + if (selectedChannel) params.set('channel', selectedChannel); + if (currentTime > 1000000) params.set('time', currentTime.toString()); + if (selectedNode) params.set('node', selectedNode.id); + + const newUrl = `${window.location.pathname}?${params.toString()}`; + window.history.pushState({}, '', newUrl); + }, [selectedDate, selectedChannel, currentTime, selectedNode]); + + useEffect(() => { + fetch(`${API_BASE}/nodes`).then(r => r.json()).then(data => { + setNodes(data.nodes || []); + setSampleRate(data.sampleRateHz || 200); + setLoading(false); + }); + }, []); + + useEffect(() => { + fetch(`${API_BASE}/dates`).then(r => r.json()).then(data => { + const dateList = data.dates || []; + setDates(dateList); + if (dateList.length > 0 && !selectedDate) setSelectedDate(dateList[dateList.length - 1]); + }); + }, []); + + // Polling de la migration + useEffect(() => { + const checkStatus = () => { + fetch(`${API_BASE}/migration-status`) + .then(r => r.json()) + .then(data => setMigrationStatus(data)) + .catch(() => {}); + }; + const interval = setInterval(checkStatus, 5000); + checkStatus(); + return () => clearInterval(interval); + }, []); + + useEffect(() => { + if (!selectedDate || !selectedChannel) return; + setRmsTimeline(null); + fetch(`${API_BASE}/rms-timeline?date=${selectedDate}&channel=${selectedChannel}`) + .then(res => res.json()) + .then(data => { + if (data && data.nodes && Object.keys(data.nodes).length > 0) { + setRmsTimeline(data); + const allPts = Object.values(data.nodes).flat() as any[]; + if (allPts.length > 0) { + const minTs = Math.min(...allPts.map(p => p.ts)); + if (minTs > 1000000) setCurrentTime(minTs); + } + } else { + const ts = new Date(selectedDate).getTime() / 1000; + if (!isNaN(ts)) setCurrentTime(ts); + } + }); + }, [selectedDate, selectedChannel]); + + useEffect(() => { + if (!isPlaying) return; + const interval = setInterval(() => { + setCurrentTime(prev => prev + (60 * (playSpeed / 5))); + }, 200); + return () => clearInterval(interval); + }, [isPlaying, playSpeed]); + + useEffect(() => { + if (!rmsTimeline || !rmsTimeline.nodes || !currentTime) { + setAllAdcValues({}); + return; + } + const values: Record = {}; + Object.entries(rmsTimeline.nodes).forEach(([nodeId, dataPoints]) => { + const pts = dataPoints as any[]; + const point = pts.find(p => p.ts >= currentTime) || pts[pts.length - 1]; + if (point) values[nodeId] = point.rms; + }); + setAllAdcValues(values); + }, [currentTime, rmsTimeline]); + + const loadNodeData = useCallback(async () => { + if (!selectedNode || !selectedDate || currentTime < 1000000) return; + setLoading(true); + try { + const res = await fetch(`${API_BASE}/data?node=${selectedNode.id}&date=${selectedDate}&channel=${selectedChannel}&start=${Math.floor(currentTime)}`); + const data = await res.json(); + if (data && data.samples) setDataWindow({ ...data, node: selectedNode.id, date: selectedDate, channel: selectedChannel }); + else setDataWindow(null); + } catch (e) { setDataWindow(null); } + setLoading(false); + }, [selectedNode, selectedDate, selectedChannel, currentTime]); + + useEffect(() => { loadNodeData(); }, [selectedNode, selectedDate, selectedChannel]); + + const formatTime = (ts: number) => { + if (ts < 1000000) return '--:--:--'; + return new Date(ts * 1000).toISOString().substr(11, 8); + }; + + const sendChat = async () => { + if (!chatMsg) return; + const newHist = [...chatHistory, { role: 'user', text: chatMsg }]; + setChatHistory(newHist); + setChatMsg(''); + try { + const res = await fetch(`${API_BASE}/chat`, { + method: 'POST', headers: { 'Content-Type': 'application/json' }, + body: JSON.stringify({ message: chatMsg }) + }); + const data = await res.json(); + setChatHistory([...newHist, { role: 'agent', text: data.response }]); + } catch (e) { setChatHistory([...newHist, { role: 'agent', text: "Erreur agent." }]); } + }; + + return (<> +
+
+

Seismic Viewer

+ + {migrationStatus && migrationStatus.processed_files < migrationStatus.total_files && ( +
+ ⚡ Migration : + {Math.round((migrationStatus.processed_files / migrationStatus.total_files) * 100)}% + ({migrationStatus.processed_files}/{migrationStatus.total_files}) +
+ )} + +
+ Nodes: {nodes.length} | Actifs: {nodes.filter(n=>n.hasDates).length} + + +
+
+ + + + + +
+
+ +
+ +
+ {[1, 10, 100, 1000].map(s => ( + + ))} +
+ {formatTime(currentTime)} + { setCurrentTime(Number(e.target.value)); setIsPlaying(false); }} /> +
+ +
+
+ + + + +
+ +
+ + setShowSection(false)} /> + +
+ {!chatOpen ? ( + + ) : ( +
+
+ Assistant + +
+
+ {chatHistory.map((m, i) => ( +
{m.text}
+ ))} +
+
+ setChatMsg(e.target.value)} onKeyPress={e => e.key === 'Enter' && sendChat()} aria-label="Poser une question" style={{ flex: 1, background: '#0f172a', border: '1px solid #334155', color: '#fff', padding: '5px', borderRadius: '4px', fontSize: '0.8rem' }} placeholder="Question…" /> + +
+
+ )} +
+ {showDashboard && ( +
+
+ + +
+
+ )} +
+
+ {showCampaignDocs && ( + + + )} +
+
+ )} +
+ {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} +
+ {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} + + {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} + + {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} +
+ {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} +
+ {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} + )} + {showCampaignDocs && ( +
+
+ + + )} +
+
+ )} + {showDocumentation && setShowDocumentation(false)} />} + {showCoverage && setShowCoverage(false)} />} +
+ + ); +} + +export default App; diff --git a/frontend_src/NodeMarkers.tsx b/frontend_src/NodeMarkers.tsx new file mode 100644 index 0000000..c28018f --- /dev/null +++ b/frontend_src/NodeMarkers.tsx @@ -0,0 +1,118 @@ +import { useEffect, useMemo } from 'react'; +import { CircleMarker, Popup, useMap } from 'react-leaflet'; +import proj4 from 'proj4'; +import { Node, AdcValues } from '../types'; + +// Définition de la projection UTM Zone 31N (WGS84) +const UTM31N = "+proj=utm +zone=31 +datum=WGS84 +units=m +no_defs"; +const WGS84 = "EPSG:4326"; + +function utmToLatLon(easting: number, northing: number): [number, number] | null { + if (!easting || !northing || isNaN(easting) || isNaN(northing)) return null; + try { + // Proj4 attend [longitude, latitude] pour le résultat + const [lon, lat] = proj4(UTM31N, WGS84, [easting, northing]); + return [lat, lon]; + } catch (e) { + console.error('UTM Conversion error:', e); + return null; + } +} + +function getMarkerColor(value: number | undefined, maxVal = 500): string { + if (value === undefined || value <= 0) return '#444444'; + const normalized = Math.min(1, Math.sqrt(value) / Math.sqrt(maxVal)); + if (normalized < 0.3) return `rgb(0, ${Math.round(normalized * 3.3 * 255)}, 255)`; + if (normalized < 0.6) return `rgb(0, 255, ${Math.round((1 - (normalized - 0.3) * 3.3) * 255)})`; + return `rgb(255, ${Math.round((1 - (normalized - 0.6) * 2.5) * 255)}, 0)`; +} + +function getMarkerRadius(value: number | undefined, maxVal = 500): number { + if (value === undefined || value <= 0) return 6; + const normalized = Math.min(1, Math.sqrt(value) / Math.sqrt(maxVal)); + return 6 + normalized * 24; +} + +interface NodeMarkersProps { + nodes: Node[]; + selectedNode: Node | null; + onSelectNode: (node: Node) => void; + adcValues: AdcValues; + showOnlyWithData?: boolean; +} + +function NodeMarkers({ nodes, selectedNode, onSelectNode, adcValues, showOnlyWithData = true }: NodeMarkersProps) { + const map = useMap(); + + const nodesWithLatLon = useMemo(() => { + console.log(`NodeMarkers: Processing ${nodes.length} nodes`); + const results = nodes + .filter(node => node.position && (!showOnlyWithData || node.hasDates)) + .map(node => { + const coords = utmToLatLon(node.position!.easting, node.position!.northing); + if (!coords) return null; + return { ...node, lat: coords[0], lon: coords[1] }; + }) + .filter((n): n is Node & { lat: number; lon: number } => n !== null); + + console.log(`NodeMarkers: ${results.length} nodes converted to LatLon`); + if (results.length > 0) { + console.log('Sample node:', results[0].id, results[0].lat, results[0].lon); + } + return results; + }, [nodes, showOnlyWithData]); + + useEffect(() => { + if (nodesWithLatLon.length === 0) return; + try { + const lats = nodesWithLatLon.map(n => n.lat); + const lons = nodesWithLatLon.map(n => n.lon); + const bounds: [[number, number], [number, number]] = [ + [Math.min(...lats), Math.min(...lons)], + [Math.max(...lats), Math.max(...lons)] + ]; + map.fitBounds(bounds, { padding: [50, 50] }); + } catch (e) { + console.error('fitBounds error:', e); + } + }, [nodesWithLatLon, map]); + + const currentMax = useMemo(() => { + const vals = Object.values(adcValues).filter(v => v > 0); + return vals.length > 0 ? Math.max(...vals) : 500; + }, [adcValues]); + + return ( + <> + + DEBUG: Centre de Sète + + {nodesWithLatLon.map(node => { + const adcValue = adcValues[node.id]; + const isSelected = selectedNode?.id === node.id; + return ( + onSelectNode(node) }} + > + + Node {node.id}
+ E: {node.position?.easting.toFixed(0)} N: {node.position?.northing.toFixed(0)}
+ RMS: {adcValue?.toFixed(2) || 'N/A'} +
+
+ ); + })} + + ); +} + +export default NodeMarkers; \ No newline at end of file diff --git a/frontend_src/SeismicSection.tsx b/frontend_src/SeismicSection.tsx new file mode 100644 index 0000000..99aed28 --- /dev/null +++ b/frontend_src/SeismicSection.tsx @@ -0,0 +1,113 @@ +import { useState, useEffect, useMemo } from 'react'; +import Plot from 'react-plotly.js'; + +interface SeismicSectionProps { + nodes: any[]; + currentTime: number; + channel: string; + visible: boolean; + onClose: () => void; +} + +const API_BASE = '/seismic/api'; + +function SeismicSection({ nodes, currentTime, channel, visible, onClose }: SeismicSectionProps) { + const [data, setData] = useState(null); + const [viewMode, setViewMode] = useState<'day' | 'global'>('day'); + const [loading, setLoading] = useState(false); + + useEffect(() => { + if (!visible) return; + setLoading(true); + + const url = viewMode === 'global' + ? `${API_BASE}/global-history?channel=${channel}` + : `${API_BASE}/rms-timeline?date=${new Date(currentTime * 1000).toISOString().split('T')[0]}&channel=${channel}`; + + fetch(url) + .then(r => r.json()) + .then(d => { + setData(d.nodes); + setLoading(false); + }) + .catch(() => setLoading(false)); + }, [visible, viewMode, channel, currentTime]); + + useEffect(() => { + if (!visible) return; + + const handleEscape = (e: KeyboardEvent) => { + if (e.key === 'Escape') onClose(); + }; + + document.addEventListener('keydown', handleEscape); + return () => document.removeEventListener('keydown', handleEscape); + }, [visible, onClose]); + + const plotData = useMemo(() => { + if (!data) return []; + const traces: any[] = []; + const nodeIds = Object.keys(data).sort(); + + nodeIds.forEach((id, index) => { + const points = data[id]; + if (!points || points.length === 0) return; + + const maxRms = Math.max(...points.map((p: any) => p.rms)) || 1; + + traces.push({ + x: points.map((p: any) => new Date(p.ts * 1000)), + y: points.map((p: any) => (p.rms / maxRms) * 0.9 + index), + type: 'scatter', + mode: 'lines', + name: `Node ${id}`, + line: { color: '#4ade80', width: 1 }, + fill: 'tonexty', + showlegend: false + }); + }); + return traces; + }, [data]); + + if (!visible) return null; + + return ( +
+
+
+

Vue Sismique Globale

+
+ + +
+
+ +
+ +
+ {loading ?
Fusion des données…
: ( + i), + ticktext: Object.keys(data || {}).sort().map(id => `b${id}`) + } + }} + config={{ responsive: true }} + style={{ width: '100%', height: '100%' }} + /> + )} +
+
+ ); +} + +export default SeismicSection; diff --git a/frontend_src/Sidebar.tsx b/frontend_src/Sidebar.tsx new file mode 100644 index 0000000..3699e04 --- /dev/null +++ b/frontend_src/Sidebar.tsx @@ -0,0 +1,127 @@ +import { useState, useMemo } from 'react'; +import Plot from 'react-plotly.js'; +import { Node, DataWindow } from '../types'; + +interface SidebarProps { + selectedNode: Node | null; + dataWindow: DataWindow | null; + loading: boolean; + sampleRate: number; +} + +type ViewMode = 'waveform' | 'rms'; + +function Sidebar({ selectedNode, dataWindow, loading, sampleRate }: SidebarProps) { + const [viewMode, setViewMode] = useState('waveform'); + const [showRaw, setShowRaw] = useState(false); + + const samples = dataWindow?.samples || []; + const startTs = dataWindow?.startTimestamp || 0; + + // Calcul RMS glissant + const rmsData = useMemo(() => { + if (samples.length === 0) return []; + const windowSize = 20; + const result = []; + for (let i = 0; i < samples.length; i++) { + const start = Math.max(0, i - windowSize); + const window = samples.slice(start, i + 1); + const rms = Math.sqrt(window.reduce((a, b) => a + b*b, 0) / window.length); + result.push(rms); + } + return result; + }, [samples]); + + // Formatter pour le X (DD hh:mm:ss) + const formatXAxis = (ts: number) => { + const d = new Date(ts * 1000); + const day = d.getDate().toString().padStart(2, '0'); + const h = d.getHours().toString().padStart(2, '0'); + const m = d.getMinutes().toString().padStart(2, '0'); + const s = d.getSeconds().toString().padStart(2, '0'); + return `${day} ${h}:${m}:${s}`; + }; + + const xValues = useMemo(() => { + return samples.map((_, i) => formatXAxis(startTs + i / sampleRate)); + }, [samples, startTs, sampleRate]); + + const plotData: any[] = []; + if (samples.length > 0) { + if (viewMode === 'waveform') { + plotData.push({ + x: xValues, + y: samples, + type: 'scatter', + mode: 'lines', + name: 'ADC Brute', + line: { color: '#4ade80', width: 1.5 } + }); + } else { + plotData.push({ + x: xValues, + y: rmsData, + type: 'scatter', + mode: 'lines', + name: 'RMS', + line: { color: '#fbbf24', width: 2 } + }); + } + } + + return ( + + ); +} + +export default Sidebar; \ No newline at end of file diff --git a/frontend_src/components/CampaignDocs.tsx b/frontend_src/components/CampaignDocs.tsx new file mode 100644 index 0000000..4b38ba7 --- /dev/null +++ b/frontend_src/components/CampaignDocs.tsx @@ -0,0 +1,241 @@ +import React, { useState, useEffect } from 'react'; + +interface TimelineEvent { + date: string; + event: string; + type: 'start' | 'data' | 'milestone' | 'operation' | 'end'; +} + +interface Document { + name: string; + file: string; + category: string; +} + +interface CampaignManifest { + timeline: TimelineEvent[]; + documents: Document[]; +} + +export default function CampaignDocs() { + const [manifest, setManifest] = useState(null); + const [activeTab, setActiveTab] = useState<'timeline' | 'docs'>('timeline'); + + useEffect(() => { + fetch('/seismic/api/docs/manifest') + .then(r => r.json()) + .then(setManifest) + .catch(console.error); + }, []); + + if (!manifest) return
Chargement...
; + + const typeColors: Record = { + start: '#10b981', + data: '#3b82f6', + milestone: '#f59e0b', + operation: '#8b5cf6', + end: '#ef4444' + }; + + const typeIcons: Record = { + start: '🚀', + data: '📊', + milestone: '🎯', + operation: '⚙️', + end: '🏁' + }; + + return ( +
+ {/* Header */} +
+

+ 📚 Campagne SeaKESP - Sète 2020 +

+

+ Documentation, chronologie et ressources de la campagne OBN +

+
+ + {/* Tabs */} +
+ + +
+ + {/* Timeline Tab */} + {activeTab === 'timeline' && ( +
+

+ Chronologie de la campagne +

+ +
+ {/* Timeline line */} +
+ + {manifest.timeline.map((event, idx) => ( +
+ {/* Timeline dot */} +
+ + {/* Event card */} +
+
+ {typeIcons[event.type]} + + {event.date} + +
+

+ {event.event} +

+
+
+ ))} +
+ + {/* Stats */} +
+
+
46 jours
+
Durée totale
+
+
+
345 fichiers
+
RAW collectés
+
+
+
~800h
+
Enregistrements
+
+
+
+ )} + + {/* Documents Tab */} + {activeTab === 'docs' && ( +
+

+ Documents de référence +

+ + {['Sources', 'Acquisition', 'Specifications', 'Geometry', 'Maps'].map(category => { + const categoryDocs = manifest.documents.filter(d => d.category === category); + if (categoryDocs.length === 0) return null; + + const categoryIcons: Record = { + Sources: '🎺', + Acquisition: '📋', + Specifications: '📖', + Geometry: '🗺️', + Maps: '🗺️' + }; + + return ( + + ); + })} +
+ )} +
+ ); +} diff --git a/frontend_src/components/DataDocumentation.tsx b/frontend_src/components/DataDocumentation.tsx new file mode 100644 index 0000000..ef27dbf --- /dev/null +++ b/frontend_src/components/DataDocumentation.tsx @@ -0,0 +1,206 @@ +import React, { useState } from 'react'; + +interface Props { + onClose: () => void; +} + +export default function DataDocumentation({ onClose }: Props) { + const [activeTab, setActiveTab] = useState<'overview' | 'channels' | 'pipeline' | 'conversion' | 'format'>('overview'); + + const tabs = [ + { id: 'overview' as const, label: 'Vue d\'ensemble', icon: '📋' }, + { id: 'channels' as const, label: 'Canaux', icon: '📊' }, + { id: 'pipeline' as const, label: 'Pipeline', icon: '🔄' }, + { id: 'conversion' as const, label: 'Conversion', icon: '⚙️' }, + { id: 'format' as const, label: 'Format H5', icon: '📦' } + ]; + + return ( +
+
+ {/* Header */} +
+

+ Documentation Technique +

+ +
+ + {/* Tabs */} +
+ {tabs.map(tab => ( + + ))} +
+ + {/* Content */} +
+ {activeTab === 'overview' && ( +
+

Campagne SeaKESP - Sète 2020

+

+ Campagne d'acquisition sismique Ocean Bottom Node (OBN) réalisée en août-septembre 2020. +

+ +

Données acquises

+
    +
  • 345 fichiers RAW propriétaires (2.7 TB)
  • +
  • Durée totale : ~800 heures d'enregistrements continus
  • +
  • Plus long fichier : 60 heures (217k secondes)
  • +
  • Fréquence d'échantillonnage : 500 Hz
  • +
+ +

État de conversion

+

+ Conversion RAW → H5 en cours sur VM .81 (4 workers parallèles). +

+
+ )} + + {activeTab === 'channels' && ( +
+

Canaux d'acquisition

+ +
+

Géophones (Canaux 1-3)

+

Capteurs de vitesse particulaire 3 composantes (X, Y, Z)

+
    +
  • Type : Géophones 15.6 V/(m/s)
  • +
  • Unité finale : m/s (mètres par seconde)
  • +
  • Sensibilité ADC : 3.576e-7 V/bit
  • +
  • Calibration : m/s = (ADC × 3.576e-7) / 15.6
  • +
+
+ +
+

Hydrophone (Canal 4)

+

Capteur de pression acoustique

+
    +
  • Type : Hydrophone 8.9 V/bar
  • +
  • Unité finale : Pa (Pascals)
  • +
  • Sensibilité ADC : 2.841e-6 V/bit
  • +
  • Calibration : Pa = (ADC × 2.841e-6 / 8.9) × 100000
  • +
  • Note : 1 bar = 100000 Pa
  • +
+
+
+ )} + + {activeTab === 'pipeline' && ( +
+

Pipeline de traitement

+ +
+

Étapes de conversion

+
    +
  1. Fichier source : RAW propriétaire (format binaire non documenté)
  2. +
  3. Conversion initiale : RAW → SEGY via MantaSegy
  4. +
  5. Parsing SEGY : Extraction headers + données ADC brutes
  6. +
  7. Calibration : Application formules ADC → unités physiques
  8. +
  9. Export H5 : Sauvegarde données brutes + calibrées
  10. +
  11. Validation : Vérification précision (erreur < 10⁻¹¹)
  12. +
+
+ +

Objectif du traitement

+

Convertir les fichiers RAW propriétaires en format HDF5 standardisé avec :

+
    +
  • Données ADC brutes (int32) pour archivage
  • +
  • Données calibrées en unités physiques (float32)
  • +
  • Métadonnées complètes (sample rate, durée, calibration)
  • +
+
+ )} + + {activeTab === 'conversion' && ( +
+

Détails de conversion

+ +

Configuration actuelle

+
    +
  • Machine : VM .81 (osboxes@192.168.0.81)
  • +
  • Workers : 4 processus parallèles
  • +
  • Stockage source : NFS depuis Pi 52 (/mnt/seismic-data)
  • +
  • Stockage destination : Local VM puis rsync vers Pi 27
  • +
+ +

Formules de calibration

+
+

Géophones (canaux 1-3) :

+

m/s = (ADC_value × 3.576e-7 V/bit) / (15.6 V/(m/s))

+ +

Hydrophone (canal 4) :

+

Pa = (ADC_value × 2.841e-6 V/bit / 8.9 V/bar) × 100000 Pa/bar

+
+ +

Validation qualité

+

+ Précision de conversion vérifiée : erreur < 10⁻¹¹ entre calcul Python et valeurs attendues. +

+
+ )} + + {activeTab === 'format' && ( +
+

Structure fichier H5

+ +
+
{`/
+├── metadata (group)
+│   ├── @duration_sec: 20.0
+│   ├── @sample_rate_hz: 500
+│   ├── @n_channels: 4
+│   └── @n_samples: 10000
+│
+├── calibration (group)
+│   ├── @geophone_v_per_bit: 3.576e-7
+│   ├── @geophone_v_per_ms: 15.6
+│   ├── @hydrophone_v_per_bit: 2.841e-6
+│   └── @hydrophone_v_per_bar: 8.9
+│
+├── raw_data (group)
+│   ├── channel_1 (dataset int32)
+│   ├── channel_2 (dataset int32)
+│   ├── channel_3 (dataset int32)
+│   └── channel_4 (dataset int32)
+│
+└── calibrated_data (group)
+    ├── channel_1 (dataset float32, unit: m/s)
+    ├── channel_2 (dataset float32, unit: m/s)
+    ├── channel_3 (dataset float32, unit: m/s)
+    └── channel_4 (dataset float32, unit: Pa)`}
+
+ +

Avantages du format H5

+
    +
  • Compression efficace : Réduction ~30% taille fichiers
  • +
  • Accès rapide : Lecture sélective par canal/plage temporelle
  • +
  • Métadonnées intégrées : Toutes les infos de calibration dans le fichier
  • +
  • Interopérabilité : Compatible Python, MATLAB, Julia, C++
  • +
  • Archivage : Données brutes + calibrées dans un seul fichier
  • +
+
+ )} +
+
+
+ ); +} diff --git a/frontend_src/components/H5Coverage.tsx b/frontend_src/components/H5Coverage.tsx new file mode 100644 index 0000000..61492a8 --- /dev/null +++ b/frontend_src/components/H5Coverage.tsx @@ -0,0 +1,151 @@ +import { useState, useEffect } from 'react'; + +const API_BASE = '/seismic/api'; + +interface CoverageStats { + total_positions: number; + with_data: number; + with_aux: number; + total_files: number; + coverage_pct: number; + missing: number; +} + +interface Gap { + start: number; + end: number; + length: number; +} + +function H5Coverage({ onClose }: { onClose: () => void }) { + const [stats, setStats] = useState(null); + const [gaps, setGaps] = useState([]); + const [loading, setLoading] = useState(true); + + useEffect(() => { + Promise.all([ + fetch(`${API_BASE}/h5/coverage`).then(r => r.json()), + fetch(`${API_BASE}/h5/gaps`).then(r => r.json()) + ]).then(([statsData, gapsData]) => { + setStats(statsData); + setGaps(gapsData.gaps.sort((a: Gap, b: Gap) => b.length - a.length)); + setLoading(false); + }); + }, []); + + if (loading) { + return ( +
+
Chargement des statistiques H5…
+
+ ); + } + + return ( +
+
+

📊 H5 Data Coverage

+ +
+ +
+ {/* Stats globales */} +
+
+
Positions totales
+
{stats?.total_positions}
+
+ +
+
Avec données
+
{stats?.with_data}
+
+ +
+
Manquantes
+
{stats?.missing}
+
+ +
+
Coverage
+
50 ? '#4ade80' : '#fbbf24' }}>{stats?.coverage_pct}%
+
+ +
+
Fichiers totaux
+
{stats?.total_files}
+
+
+ + {/* Progress bar */} +
+
Progression du déploiement
+
+
+
+ {stats?.with_data} / {stats?.total_positions} positions +
+
+
+ + {/* Top 10 gaps */} +
+

🔍 Top 10 Gaps (plages manquantes)

+
+ {gaps.slice(0, 10).map((gap, i) => ( +
+
+ b{gap.start} + + b{gap.end} +
+
50 ? '#dc2626' : gap.length > 20 ? '#f59e0b' : '#3b82f6', + color: '#fff', + padding: '4px 12px', + borderRadius: '12px', + fontSize: '0.85rem', + fontWeight: 'bold' + }}> + {gap.length} positions +
+
+ ))} +
+ + {gaps.length > 10 && ( +
+ … et {gaps.length - 10} autres gaps +
+ )} +
+ + {/* Verdict */} +
+
+ {stats && stats.coverage_pct < 50 ? '⚠️ Déploiement partiel détecté' : '✅ Coverage acceptable'} +
+
+ {stats && stats.coverage_pct < 50 + ? `Seulement ${stats.coverage_pct}% des positions planifiées ont des données. Cela suggère un test de déploiement plutôt qu'une collecte complète.` + : `${stats?.coverage_pct}% des positions déployées avec succès.` + } +
+
+
+
+ ); +} + +export default H5Coverage; diff --git a/frontend_src/components/H5Dashboard.tsx b/frontend_src/components/H5Dashboard.tsx new file mode 100644 index 0000000..bdb2627 --- /dev/null +++ b/frontend_src/components/H5Dashboard.tsx @@ -0,0 +1,246 @@ +import React, { useState, useEffect } from 'react'; + +interface H5File { + filename: string; + nodeId: string; + date: string; +} + +interface WaveformData { + samples: number[]; + sample_rate: number; + duration_sec: number; + channel: number; + channel_name: string; + unit: string; + stats: { + min: number; + max: number; + mean: number; + std: number; + rms: number; + }; +} + +export default function H5Dashboard() { + const [files, setFiles] = useState([]); + const [selectedFile, setSelectedFile] = useState(null); + const [waveformData, setWaveformData] = useState(null); + const [channel, setChannel] = useState(1); + const [loading, setLoading] = useState(false); + const [startTime, setStartTime] = useState(0); + const [duration, setDuration] = useState(10); + const [globalView, setGlobalView] = useState(false); + + useEffect(() => { + fetch('/seismic/api/h5/files') + .then(r => r.json()) + .then(data => setFiles(data.files || [])) + .catch(console.error); + }, []); + + const loadWaveform = async (file: string, ch: number, start: number, dur: number, global: boolean = false) => { + setLoading(true); + try { + const params = new URLSearchParams({ + file, + channel: String(ch), + start: String(start), + duration: global ? '0' : String(dur) + }); + const response = await fetch(`/seismic/api/h5/data?${params}`); + const data = await response.json(); + setWaveformData(data); + } catch (error) { + console.error(error); + } finally { + setLoading(false); + } + }; + + const handleFileSelect = (file: string) => { + setSelectedFile(file); + setGlobalView(false); + loadWaveform(file, channel, startTime, duration, false); + }; + + const handleChannelChange = (ch: number) => { + setChannel(ch); + if (selectedFile) loadWaveform(selectedFile, ch, startTime, duration, globalView); + }; + + const handleGlobalView = () => { + if (selectedFile) { + setGlobalView(true); + loadWaveform(selectedFile, channel, 0, 0, true); + } + }; + + return ( +
+ {/* Header */} +
+

+ 🎯 Dashboard H5 - Visualisation Waveforms +

+

+ {files.length} fichiers H5 calibrés disponibles +

+
+ +
+ {/* Sidebar - Liste des fichiers */} +
+

+ 📁 Fichiers H5 +

+
+ {files.map((file, idx) => ( + + ))} +
+
+ + {/* Main content - Waveform */} +
+ {!selectedFile && ( +
+
📊
+

Sélectionnez un fichier H5 pour visualiser les waveforms

+
+ )} + + {selectedFile && ( + <> + {/* Controls */} +
+
+ +
+ {[1, 2, 3, 4].map(ch => ( + + ))} +
+
+ + +
+ + {/* Waveform Display */} + {loading && ( +
+
+

Chargement des données...

+
+ )} + + {waveformData && !loading && ( +
+ {/* Info bar */} +
+
+
Canal
+
{waveformData.channel_name}
+
+
+
Unité
+
{waveformData.unit}
+
+
+
Durée
+
{waveformData.duration_sec.toFixed(1)} s
+
+
+
Échantillons
+
{waveformData.samples.length}
+
+
+ + {/* Stats */} +
+ {Object.entries(waveformData.stats).map(([key, value]) => ( +
+
{key}
+
{value.toExponential(3)}
+
+ ))} +
+ + {/* Waveform visualization (simple text representation for now) */} +
+
+ Waveform Preview (premiers échantillons) : +
+
+                      {waveformData.samples.slice(0, 50).map((v, i) => 
+                        `[${i.toString().padStart(4, '0')}] ${v.toExponential(4)} ${waveformData.unit}`
+                      ).join('\n')}
+                      {waveformData.samples.length > 50 && `\n... (${waveformData.samples.length - 50} échantillons restants)`}
+                    
+
+
+ )} + + )} +
+
+
+ ); +} diff --git a/h5_api_server.py b/h5_api_server.py new file mode 100644 index 0000000..99ae0f9 --- /dev/null +++ b/h5_api_server.py @@ -0,0 +1,325 @@ +#!/usr/bin/env python3 +""" +Flask API server for SeaKESP H5 data and node metadata +Provides both H5 data access and node/date endpoints +""" + +from flask import Flask, jsonify, request, send_file +from flask_cors import CORS +import h5py +import numpy as np +import os +import json +from pathlib import Path +from datetime import datetime + +app = Flask(__name__) +CORS(app) + +# Paths +DATA_DIR = Path("/data") +H5_DIR = DATA_DIR / "h5" +DOCS_DIR = DATA_DIR / "docs" +INDEX_FILE = DATA_DIR / "index.json" + +# Load node index +nodes_data = {} +dates_list = [] + +def load_index(): + """Load node data from index.json""" + global nodes_data, dates_list + + if not INDEX_FILE.exists(): + print(f"Warning: {INDEX_FILE} not found") + return + + try: + with open(INDEX_FILE, 'r') as f: + data = json.load(f) + nodes_data = data.get('nodes', {}) + dates_list = data.get('dates', []) + print(f"Loaded {len(nodes_data)} nodes and {len(dates_list)} dates from index.json") + except Exception as e: + print(f"Error loading index.json: {e}") + +# Load index on startup +load_index() + +# ============================================================================ +# Node & Date Endpoints (replacing Node.js backend) +# ============================================================================ + +@app.route('/api/nodes', methods=['GET']) +def get_nodes(): + """Return list of all nodes with metadata""" + nodes_list = [] + for node_id, node_info in nodes_data.items(): + nodes_list.append({ + 'id': node_id, + 'position': node_info.get('position', {}), + 'file_count': len(node_info.get('files', [])) + }) + return jsonify(nodes_list) + +@app.route('/api/dates', methods=['GET']) +def get_dates(): + """Return list of available dates""" + return jsonify(dates_list) + +@app.route('/api/migration-status', methods=['GET']) +def migration_status(): + """Return H5 migration status summary""" + h5_count = len(list(H5_DIR.glob("*.h5"))) if H5_DIR.exists() else 0 + + return jsonify({ + 'total_h5_files': h5_count, + 'nodes_count': len(nodes_data), + 'dates_count': len(dates_list), + 'last_updated': datetime.now().isoformat() + }) + +@app.route('/api/rms-timeline', methods=['GET']) +def rms_timeline(): + """Placeholder for RMS timeline (requires processing)""" + return jsonify([]) + +@app.route('/api/global-history', methods=['GET']) +def global_history(): + """Placeholder for global history (requires processing)""" + return jsonify([]) + +# ============================================================================ +# H5 Data Endpoints +# ============================================================================ + +@app.route('/api/h5/files', methods=['GET']) +def list_h5_files(): + """List all H5 files with metadata""" + if not H5_DIR.exists(): + return jsonify([]) + + files = [] + for h5_file in sorted(H5_DIR.glob("*.h5")): + try: + with h5py.File(h5_file, 'r') as f: + metadata = dict(f['metadata'].attrs) + + # Extract node ID and date from filename + # Format: node_NODEID_YYYYMMDD.h5 + parts = h5_file.stem.split('_') + node_id = parts[1] if len(parts) > 1 else "unknown" + date_str = parts[2] if len(parts) > 2 else "unknown" + + files.append({ + 'filename': h5_file.name, + 'path': str(h5_file), + 'nodeId': node_id, + 'date': date_str, + 'duration_sec': float(metadata.get('duration_sec', 0)), + 'sample_rate_hz': int(metadata.get('sample_rate_hz', 500)), + 'n_channels': int(metadata.get('n_channels', 4)), + 'n_samples': int(metadata.get('n_samples', 0)) + }) + except Exception as e: + print(f"Error reading {h5_file}: {e}") + + return jsonify(files) + +@app.route('/api/h5/data', methods=['GET']) +def get_h5_data(): + """Get waveform data from H5 file""" + filename = request.args.get('file') + channel = request.args.get('channel', 'channel_1') + start = float(request.args.get('start', 0)) + duration = float(request.args.get('duration', 10)) + + if not filename: + return jsonify({'error': 'Missing file parameter'}), 400 + + h5_path = DATA_DIR / filename + + if not h5_path.exists(): + return jsonify({'error': 'File not found'}), 404 + + try: + with h5py.File(h5_path, 'r') as f: + # Get metadata + sample_rate = int(f['metadata'].attrs['sample_rate_hz']) + + # Calculate sample range + start_sample = int(start * sample_rate) + n_samples = int(duration * sample_rate) + end_sample = start_sample + n_samples + + # Read calibrated data + data = f['calibrated_data'][channel][start_sample:end_sample] + + # Calculate statistics + stats = { + 'mean': float(np.mean(data)), + 'std': float(np.std(data)), + 'min': float(np.min(data)), + 'max': float(np.max(data)), + 'rms': float(np.sqrt(np.mean(data**2))) + } + + # Create time array + time = np.arange(len(data)) / sample_rate + start + + return jsonify({ + 'time': time.tolist(), + 'data': data.tolist(), + 'stats': stats, + 'sample_rate': sample_rate, + 'channel': channel, + 'start': start, + 'duration': duration, + 'n_samples': len(data) + }) + + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/h5/coverage', methods=['GET']) +def h5_coverage(): + """Get H5 coverage summary by node and date""" + if not H5_DIR.exists(): + return jsonify([]) + + coverage = {} + + for h5_file in H5_DIR.glob("*.h5"): + try: + parts = h5_file.stem.split('_') + node_id = parts[1] if len(parts) > 1 else "unknown" + date_str = parts[2] if len(parts) > 2 else "unknown" + + key = f"{node_id}_{date_str}" + + with h5py.File(h5_file, 'r') as f: + duration = float(f['metadata'].attrs.get('duration_sec', 0)) + + if key not in coverage: + coverage[key] = { + 'nodeId': node_id, + 'date': date_str, + 'total_duration_hours': 0, + 'file_count': 0 + } + + coverage[key]['total_duration_hours'] += duration / 3600 + coverage[key]['file_count'] += 1 + + except Exception as e: + print(f"Error processing {h5_file}: {e}") + + return jsonify(list(coverage.values())) + +@app.route('/api/h5/gaps', methods=['GET']) +def h5_gaps(): + """Identify gaps in H5 data coverage""" + # TODO: Implement gap detection logic + return jsonify([]) + +# ============================================================================ +# Campaign Documentation Endpoints +# ============================================================================ + +@app.route('/api/docs/manifest', methods=['GET']) +def get_docs_manifest(): + """Get campaign documentation manifest""" + manifest_path = DOCS_DIR / "campaign_manifest.json" + + if not manifest_path.exists(): + return jsonify({'error': 'Manifest not found'}), 404 + + try: + with open(manifest_path, 'r') as f: + manifest = json.load(f) + return jsonify(manifest) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/docs/', methods=['GET']) +def download_doc(filename): + """Download a campaign document""" + doc_path = DOCS_DIR / filename + + if not doc_path.exists(): + return jsonify({'error': 'Document not found'}), 404 + + return send_file(doc_path, as_attachment=True) + +# ============================================================================ +# Health Check +# ============================================================================ + +@app.route('/health', methods=['GET']) +def health(): + """Health check endpoint""" + return jsonify({ + 'status': 'ok', + 'h5_files': len(list(H5_DIR.glob("*.h5"))) if H5_DIR.exists() else 0, + 'nodes_loaded': len(nodes_data), + 'dates_loaded': len(dates_list) + }) + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=3004, debug=False, threaded=True) + +# === Additional routes for frontend compatibility === + +@app.route('/api/files', methods=['GET']) +def list_files_alias(): + """Alias for /api/h5/files — used by the SeiSee frontend""" + return list_h5_files() + +@app.route('/api/file/', methods=['GET']) +def get_file_info(filename): + """Get detailed file info including datasets — needed for channel selector""" + h5_path = DATA_DIR / filename + if not h5_path.exists(): + return jsonify({'error': 'File not found'}), 404 + + try: + with h5py.File(h5_path, 'r') as f: + metadata = dict(f['metadata'].attrs) if 'metadata' in f else {} + calibration = dict(f['calibration'].attrs) if 'calibration' in f else {} + + datasets = [] + def collect_datasets(name, obj): + if isinstance(obj, h5py.Dataset): + datasets.append({ + 'path': name, + 'shape': list(obj.shape), + 'dtype': str(obj.dtype), + 'chunks': list(obj.chunks) if obj.chunks else None, + 'compression': obj.compression + }) + f.visititems(collect_datasets) + + duration_sec = float(metadata.get('duration_sec', 0)) + sample_rate = int(metadata.get('sample_rate_hz', 500)) + n_channels = int(metadata.get('n_channels', 4)) + n_samples = int(metadata.get('n_samples', 0)) + + # Human readable duration + hours = int(duration_sec // 3600) + mins = int((duration_sec % 3600) // 60) + duration_human = f'{hours}h{mins:02d}' if hours else f'{mins}min' + + return jsonify({ + 'filename': filename, + 'type': 'h5', + 'duration_sec': duration_sec, + 'duration_human': duration_human, + 'sample_rate_hz': sample_rate, + 'num_channels': n_channels, + 'samples_per_channel': n_samples, + 'datasets': datasets, + 'calibration': {k: float(v) if hasattr(v, '__float__') else str(v) for k, v in calibration.items()}, + 'metadata': {k: float(v) if hasattr(v, '__float__') else str(v) for k, v in metadata.items()} + }) + except Exception as e: + return jsonify({'error': str(e)}), 500 diff --git a/h5_api_server_fixed.py b/h5_api_server_fixed.py new file mode 100644 index 0000000..0cbc5ab --- /dev/null +++ b/h5_api_server_fixed.py @@ -0,0 +1,326 @@ +#!/usr/bin/env python3 +from flask import Flask, jsonify, request +from flask_cors import CORS +import json +import h5py +import numpy as np +from pathlib import Path +from datetime import datetime + +app = Flask(__name__) +CORS(app) + +# Load index once at startup +with open('/data/index.json', 'r') as f: + INDEX = json.load(f) + + +def to_python_type(val): + """Convert numpy types to Python types for JSON serialization""" + if hasattr(val, 'item'): + return val.item() + return val + +H5_DIR = Path('/data/h5') + +@app.route('/api/nodes', methods=['GET']) +def get_nodes(): + nodes_list = [] + for node_id, node_info in INDEX['nodes'].items(): + file_count = len(node_info.get('files', [])) + nodes_list.append({ + 'id': node_id, + 'position': node_info.get('position', {}), + 'file_count': file_count, + 'hasDates': file_count > 0 + }) + return jsonify({ + 'nodes': nodes_list, + 'sampleRateHz': 500 + }) + +@app.route('/api/dates', methods=['GET']) +def get_dates(): + return jsonify({'dates': INDEX['dates']}) + +@app.route('/api/migration-status', methods=['GET']) +def get_migration_status(): + """Status de la conversion RAW -> H5""" + total_files = 345 # Connu du projet + h5_files = list(H5_DIR.glob('*.h5')) + converted = len(h5_files) + + return jsonify({ + 'summary': { + 'total_files': total_files, + 'converted_files': converted, + 'percentage': round(converted / total_files * 100, 1), + 'status': 'in_progress' if converted < total_files else 'complete' + }, + 'h5_files_available': converted + }) + +@app.route('/api/rms-timeline', methods=['GET']) +def get_rms_timeline(): + """Timeline RMS optimisé - utilise l'INDEX pour filtrer par date""" + date = request.args.get('date') + channel = request.args.get('channel', 'ch0') + window_sec = int(request.args.get('window', 60)) + + if not date: + return jsonify({'error': 'date parameter required'}), 400 + + channel_num = int(channel.replace('ch', '').replace('CH', '')) + nodes_data = {} + + # Utiliser l'INDEX pour trouver les fichiers de cette date + for node_id, node_info in INDEX['nodes'].items(): + for file_info in node_info.get('files', []): + if file_info.get('date') != date: + continue + + filename = file_info.get('filename') + h5_path = H5_DIR / filename + if not h5_path.exists(): + continue + + try: + with h5py.File(h5_path, 'r') as f: + sample_rate = to_python_type(f['metadata'].attrs.get('sample_rate_hz', 500)) + start_ts = file_info.get('timestamp', 0) + + dataset_name = f'calibrated_data/channel_{channel_num + 1}' + if dataset_name not in f: + continue + + dataset = f[dataset_name] + total_samples = dataset.shape[0] + window_samples = int(window_sec * sample_rate) + + # Calculer RMS par fenêtre (max 100 points par fichier) + timeline = [] + step = max(window_samples, total_samples // 100) + for i in range(0, min(total_samples, step * 100), step): + end_idx = min(i + window_samples, total_samples) + chunk = dataset[i:end_idx] + rms = float(np.sqrt(np.mean(chunk ** 2))) + ts = start_ts + (i / sample_rate) + timeline.append({'ts': ts, 'rms': rms}) + + if node_id not in nodes_data: + nodes_data[node_id] = [] + nodes_data[node_id].extend(timeline) + except Exception as e: + continue + + return jsonify({ + 'date': date, + 'channel': channel, + 'nodes': nodes_data + }) + +@app.route('/api/h5/data', methods=['GET']) +@app.route('/api/data', methods=['GET']) +def get_waveform_data(): + """Données waveform - accepte soit file= soit node=+date=""" + filename = request.args.get('file') + node_id = request.args.get('node') + date = request.args.get('date') + channel = request.args.get('channel', 'ch0') + start = float(request.args.get('start', 0)) + duration = float(request.args.get('duration', 10)) + + # Trouver le fichier H5 + h5_file = None + if filename: + # Mode direct: fichier spécifié + h5_file = H5_DIR / filename + elif node_id and date: + # Mode lookup: chercher via node_id et date + node_info = INDEX['nodes'].get(node_id) + if node_info: + for file_info in node_info.get('files', []): + if file_info.get('date') == date: + h5_file = H5_DIR / file_info.get('filename', '') + break + else: + return jsonify({'error': 'file or (node and date) required'}), 400 + + if not h5_file or not h5_file.exists(): + return jsonify({'error': 'H5 file not found', 'path': str(h5_file)}), 404 + + try: + with h5py.File(h5_file, 'r') as f: + sample_rate = f['metadata'].attrs['sample_rate_hz'] + channel_num = int(channel.replace('ch', '').replace('CH', '')) + + # Lire les données calibrées + dataset = f[f'calibrated_data/channel_{channel_num + 1}'] + start_sample = int(start * sample_rate) + end_sample = int((start + duration) * sample_rate) + + # Limiter à la taille du dataset + end_sample = min(end_sample, dataset.shape[0]) + + if start_sample >= dataset.shape[0]: + return jsonify({'error': 'start time out of range'}), 400 + + data = dataset[start_sample:end_sample] + + # Calculer stats + rms = float(np.sqrt(np.mean(data ** 2))) + peak = float(np.max(np.abs(data))) + + return jsonify({ + 'node_id': node_id, + 'date': date, + 'channel': channel, + 'start': start, + 'duration': duration, + 'sample_rate': to_python_type(sample_rate), + 'data': data.tolist(), + 'stats': { + 'rms': rms, + 'peak': peak, + 'samples': len(data) + } + }) + + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/h5/files', methods=['GET']) +def get_h5_files(): + """Liste des fichiers H5 disponibles avec métadonnées""" + files = [] + for h5_path in H5_DIR.glob('*.h5'): + try: + with h5py.File(h5_path, 'r') as f: + filename = h5_path.name + # Parse: auto_228_064210_b50_rsn51848_seq1_1597256250.h5 + parts = filename.replace('.h5', '').split('_') + node_id = parts[1] if len(parts) > 1 else 'unknown' + + # Find date from INDEX + date = 'unknown' + node_info = INDEX['nodes'].get(node_id) + if node_info: + for file_info in node_info.get('files', []): + if file_info.get('filename') == filename: + date = file_info.get('date', 'unknown') + break + + files.append({ + 'filename': filename, + 'nodeId': node_id, + 'date': date, + 'size_mb': round(h5_path.stat().st_size / 1024 / 1024, 2), + 'duration_sec': to_python_type(f['metadata'].attrs.get('duration_sec', 0)), + 'sample_rate': to_python_type(f['metadata'].attrs.get('sample_rate_hz', 500)), + 'channels': to_python_type(f['metadata'].attrs.get('n_channels', 4)) + }) + except Exception as e: + pass + + return jsonify({'files': files, 'count': len(files)}) + +@app.route('/api/h5/coverage', methods=['GET']) +def get_h5_coverage(): + """Matrice de couverture nodes x dates""" + coverage = {} + for node_id, node_info in INDEX['nodes'].items(): + node_dates = [f['date'] for f in node_info.get('files', []) if 'date' in f] + coverage[node_id] = node_dates + + return jsonify({ + 'coverage': coverage, + 'total_nodes': len(coverage), + 'total_dates': len(INDEX['dates']) + }) + +@app.route('/api/h5/gaps', methods=['GET']) +def get_h5_gaps(): + """Identify gaps in H5 data coverage per node""" + gaps = [] + + for node_id, node_info in INDEX['nodes'].items(): + files = sorted(node_info.get('files', []), key=lambda x: x.get('timestamp', 0)) + + for i in range(len(files) - 1): + current = files[i] + next_file = files[i + 1] + + current_end = current.get('timestamp', 0) + current.get('duration_sec', 0) + next_start = next_file.get('timestamp', 0) + + gap_seconds = next_start - current_end + + # Report gaps > 1 hour + if gap_seconds > 3600: + gaps.append({ + 'node_id': node_id, + 'gap_start': current_end, + 'gap_end': next_start, + 'gap_hours': round(gap_seconds / 3600, 2), + 'before_file': current.get('filename'), + 'after_file': next_file.get('filename') + }) + + return jsonify({ + 'gaps': gaps, + 'total_gaps': len(gaps) + }) + +@app.route('/api/chat', methods=['POST']) +def chat(): + """Endpoint chat assistant (mock)""" + data = request.json + message = data.get('message', '') + + return jsonify({ + 'response': f"[Mock] Vous avez dit: {message}", + 'timestamp': datetime.now().isoformat() + }) + + +@app.route('/api/docs/manifest', methods=['GET']) +def get_docs_manifest(): + """Manifest de la documentation de campagne""" + return jsonify({ + 'campaign': { + 'name': 'SeaKESP Sète 2020', + 'start_date': '2020-07-11', + 'end_date': '2020-09-22', + 'duration_days': 46, + 'location': 'Sète, Méditerranée, France', + 'coordinates': {'lat': 43.40, 'lon': 3.70} + }, + 'timeline': [ + {'date': '2020-07-11', 'event': 'Début du déploiement', 'type': 'deployment'}, + {'date': '2020-08-08', 'event': 'Premiers enregistrements', 'type': 'recording'}, + {'date': '2020-08-12', 'event': 'Campagne principale', 'type': 'recording'}, + {'date': '2020-08-16', 'event': 'Fin campagne principale', 'type': 'recording'}, + {'date': '2020-09-22', 'event': 'Récupération équipements', 'type': 'recovery'} + ], + 'documents': [ + {'name': 'Rapport Gandalf', 'type': 'report', 'available': False}, + {'name': 'SPS Preplots', 'type': 'technical', 'available': False}, + {'name': 'Paramètres acquisition', 'type': 'technical', 'available': False} + ], + 'stats': { + 'total_nodes': len(INDEX['nodes']), + 'total_dates': len(INDEX['dates']), + 'total_files': INDEX.get('total_files', 0), + 'sample_rate_hz': 500, + 'channels': 4 + } + }) + +@app.route('/health', methods=['GET']) +def health(): + return jsonify({'status': 'ok', 'nodes': len(INDEX['nodes']), 'dates': len(INDEX['dates'])}) + +if __name__ == '__main__': + print(f"Loaded {len(INDEX['nodes'])} nodes, {len(INDEX['dates'])} dates") + print(f"H5 directory: {H5_DIR}") + app.run(host='0.0.0.0', port=3004) diff --git a/h5_data.db b/h5_data.db new file mode 100644 index 0000000..ea6fc62 Binary files /dev/null and b/h5_data.db differ diff --git a/index.html.final.bak b/index.html.final.bak new file mode 100644 index 0000000..f55d337 --- /dev/null +++ b/index.html.final.bak @@ -0,0 +1,2685 @@ + + + + + +🌊 SeiSee Web — Seismic Viewer + + + + + + + +
+

🌊 SeiSee Web

+
+
+
+ + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + · + + +
+
+ + + colonnes +
+
+ + +
+
+ + +
+
+ +
+
+
+ +
+ +
+ +
+
+
Section
+
Metadata
+
Map
+
Extract
+
Pipeline
+
Geosup
+
Headers
+
Waveform
+
Gather
+
Coverage
+
+ +
+ +
+ +
+ +
+
+
Select a file to view metadata
+
+
+ +
+
+
+
+
Geosup Layers
+ + + + + + +
+
+
Edit Location
+ + +
+
+
+ +
+
+
+

Extract Segment

+
+ + +
+
+ + +
+
+ + +
Default: 1200s (20 minutes)
+
+
+ + +
+ + +
+
+
+ +
+
+

Processing Chain — RAW → H5

+ +
+
+

1. RAW

+

Données brutes Manta (format propriétaire)

+
--
+
Format Propriétaire
+
+
Source: Hydrophones + Géophones Manta
+
Résolution ADC: 24-bit, ±2.5V
+
+
+
+
+

2. SEGY

+

Conversion intermédiaire via mantasegy (Box64/ARM)

+
--
+
mantasegy (Box64/ARM)
+
+
Format: SEG-Y Rev.1
+
Conversion: Binaire Manta → SEG-Y
+
+
+
+
+

3. Normalisation

+

Conversion ADC → valeurs physiques calibrées

+
Python + Calibration
+
+
Géophones (SM-24):
+
v(m/s) = (ADC / gain) × 28.8 V/(m/s)
+
Hydrophones:
+
P(µPa) = (ADC / gain) × sens(µPa/V)
+
ADC → Voltage:
+
V = ADC × (5.0 / 2²⁴)
+
Normalisation trace:
+
(trace - mean) / std
+
+
+
+
+

4. HDF5

+

Export HDF5 avec Python + calibration

+
--
+
Python + h5py
+
+
Format: HDF5 (.h5)
+
Groupes: calibrated_data, raw_data, metadata
+
Compression: gzip
+
+
+
+ +
+
+
Espace Disque (USB)
+
-- %
+
+
-- GB utilisés sur -- GB
+
+
+
Status Conversion
+
Inactif
+
Aucune tâche en cours
+
+
+
Complétion H5
+
-- %
+
+
-- / 345 fichiers traités
+
+
+ + +
+
+ +
+
+

📍 Geosup — Positions & Documentation

+ +
+
--
Sources
+
--
Receivers
+
--
Deployments
+
--
Documents
+
+ +
+

📚 Documentation

+
+
Chargement...
+
+
+ +
+

🗺️ Position Coverage

+

Use the Map tab to visualize source, receiver, and deployment positions. Toggle layers using the controls.

+ +
+
+
+ +
+
+
Select a file to view headers
+
+
+ +
+
+ Channels: +
+ | + + + + + +
+
+
+ +
+
+
+ + + + + 0 selected +
+
+ + + + + + + + + + + + + + + + +
+ 0:00 + + 2:13:20 +
+ + +
+
+ +
Select files using checkboxes in the file list, then click "Load Gather"
+
+
+
+
+ +
+
+
+
--
Nodes
+
--
Files
+
--
Total Hours
+
--
Lines
+
+ +
+
+
Loading coverage data...
+
+
+
+ +
+ Ready +
+
+
+ + + + + + + + diff --git a/index.html.final.broken-20260219 b/index.html.final.broken-20260219 new file mode 100644 index 0000000..0284e9f --- /dev/null +++ b/index.html.final.broken-20260219 @@ -0,0 +1,1651 @@ + + + + + + + + + + +🌊 SeiSee Web — Seismic Viewer + + + + + + + +
+

🌊 SeiSee Web

+
+
+
+ + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + + +
+
+ + +
+
+ + +
+
+ +
+
+
+ +
+ +
+ +
+
+
Section
+
Metadata
+
Map
+
Extract
+
Pipeline
+
Geosup
+
Headers
+
Waveform
+
Gather
+
Coverage
+
+ +
+ +
+ +
+ +
+
+
Select a file to view metadata
+
+
+ +
+
+
+
+
Geosup Layers
+ + + + +
+
+
Edit Location
+ + +
+
+
+ +
+
+
+

Extract Segment

+
+ + +
+
+ + +
+
+ + +
Default: 1200s (20 minutes)
+
+
+ + +
+ + +
+
+
+ +
+
+

Processing Chain — RAW → H5

+ +
+
+

1. RAW

+

Données brutes Manta (format propriétaire)

+
--
+
Format Propriétaire
+
+
Source: Hydrophones + Géophones Manta
+
Résolution ADC: 24-bit, ±2.5V
+
+
+
+
+

2. SEGY

+

Conversion intermédiaire via mantasegy (Box64/ARM)

+
--
+
mantasegy (Box64/ARM)
+
+
Format: SEG-Y Rev.1
+
Conversion: Binaire Manta → SEG-Y
+
+
+
+
+

3. Normalisation

+

Conversion ADC → valeurs physiques calibrées

+
Python + Calibration
+
+
Géophones (SM-24):
+
v(m/s) = (ADC / gain) × 28.8 V/(m/s)
+
Hydrophones:
+
P(µPa) = (ADC / gain) × sens(µPa/V)
+
ADC → Voltage:
+
V = ADC × (5.0 / 2²⁴)
+
Normalisation trace:
+
(trace - mean) / std
+
+
+
+
+

4. HDF5

+

Export HDF5 avec Python + calibration

+
--
+
Python + h5py
+
+
Format: HDF5 (.h5)
+
Groupes: calibrated_data, raw_data, metadata
+
Compression: gzip
+
+
+
+ +
+
+
Espace Disque (USB)
+
-- %
+
+
-- GB utilisés sur -- GB
+
+
+
Status Conversion
+
Inactif
+
Aucune tâche en cours
+
+
+
Complétion H5
+
-- %
+
+
-- / 345 fichiers traités
+
+
+ + +
+
+ +
+
+

📍 Geosup — Positions & Documentation

+ +
+
--
Sources
+
--
Receivers
+
--
Deployments
+
--
Documents
+
+ +
+

📚 Documentation

+
+
Chargement...
+
+
+ +
+

🗺️ Position Coverage

+

Use the Map tab to visualize source, receiver, and deployment positions. Toggle layers using the controls.

+ +
+
+
+ +
+
+
Select a file to view headers
+
+
+ +
+
+
+
+
+
--
Nodes
+
--
Files
+
--
Total Hours
+
--
Lines
+
+ +
+
+
Loading coverage data...
+
+
+
+
+
+
+ + + + + 0 selected +
+
+ + + + + + + + + + + + + + + + +
+ 0:00 + + 2:13:20 +
+ + +
+
+ +
Select files using checkboxes in the file list, then click "Load Gather"
+
+
+
+
+
+ +
+ Ready +
+
+
+ + + + + + diff --git a/index.html.v3 b/index.html.v3 new file mode 100644 index 0000000..8957da0 --- /dev/null +++ b/index.html.v3 @@ -0,0 +1,2029 @@ + + + + + +🌊 SeiSee Web — Seismic Viewer + + + + + + + +
+

🌊 SeiSee Web

+
+
+
+ + + + +
+
+ + +
+
+ + +
+
+ + +
+
+ + + · + + +
+
+ + + colonnes +
+
+ + +
+
+ + +
+
+ +
+
+
+ +
+ +
+ +
+
+
Section
+
Metadata
+
Map
+
Extract
+
Pipeline
+
Geosup
+
Headers
+
Waveform
+
Gather
+
Coverage
+
+ +
+ +
+ +
+ +
+
+
Select a file to view metadata
+
+
+ +
+
+
+
+
Geosup Layers
+ + + + +
+
+
Edit Location
+ + +
+
+
+ +
+
+
+

Extract Segment

+
+ + +
+
+ + +
+
+ + +
Default: 1200s (20 minutes)
+
+
+ + +
+ + +
+
+
+ +
+
+

Processing Chain — RAW → H5

+ +
+
+

1. RAW

+

Données brutes Manta (format propriétaire)

+
--
+
Format Propriétaire
+
+
Source: Hydrophones + Géophones Manta
+
Résolution ADC: 24-bit, ±2.5V
+
+
+
+
+

2. SEGY

+

Conversion intermédiaire via mantasegy (Box64/ARM)

+
--
+
mantasegy (Box64/ARM)
+
+
Format: SEG-Y Rev.1
+
Conversion: Binaire Manta → SEG-Y
+
+
+
+
+

3. Normalisation

+

Conversion ADC → valeurs physiques calibrées

+
Python + Calibration
+
+
Géophones (SM-24):
+
v(m/s) = (ADC / gain) × 28.8 V/(m/s)
+
Hydrophones:
+
P(µPa) = (ADC / gain) × sens(µPa/V)
+
ADC → Voltage:
+
V = ADC × (5.0 / 2²⁴)
+
Normalisation trace:
+
(trace - mean) / std
+
+
+
+
+

4. HDF5

+

Export HDF5 avec Python + calibration

+
--
+
Python + h5py
+
+
Format: HDF5 (.h5)
+
Groupes: calibrated_data, raw_data, metadata
+
Compression: gzip
+
+
+
+ +
+
+
Espace Disque (USB)
+
-- %
+
+
-- GB utilisés sur -- GB
+
+
+
Status Conversion
+
Inactif
+
Aucune tâche en cours
+
+
+
Complétion H5
+
-- %
+
+
-- / 345 fichiers traités
+
+
+ + +
+
+ +
+
+

📍 Geosup — Positions & Documentation

+ +
+
--
Sources
+
--
Receivers
+
--
Deployments
+
--
Documents
+
+ +
+

📚 Documentation

+
+
Chargement...
+
+
+ +
+

🗺️ Position Coverage

+

Use the Map tab to visualize source, receiver, and deployment positions. Toggle layers using the controls.

+ +
+
+
+ +
+
+
Select a file to view headers
+
+
+ +
+
+ Channels: +
+ | + + + + + +
+
+
+ +
+
+
+ + + + + 0 selected +
+
+ + + + + + + + + + + + + + + + +
+ 0:00 + + 2:13:20 +
+ +
+
+ +
Select files using checkboxes in the file list, then click "Load Gather"
+
+
+
+
+ +
+
+
+
--
Nodes
+
--
Files
+
--
Total Hours
+
--
Lines
+
+ +
+
+
Loading coverage data...
+
+
+
+ +
+ Ready +
+
+
+ + + + diff --git a/index_all_v2.py b/index_all_v2.py new file mode 100644 index 0000000..cdbe3ed --- /dev/null +++ b/index_all_v2.py @@ -0,0 +1,86 @@ +import os +import re +import json +import csv +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +# Pattern pour extraire les infos du nom de fichier +FILENAME_PATTERN = re.compile(r'auto_.*?_b(\d+)_.*?_(\d{10})\.h5$', re.IGNORECASE) + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") + +def load_node_positions(csv_path): + positions = {} + if not csv_path.exists(): return positions + with open(csv_path, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return positions + headers = lines[3].strip().split(',') + try: + node_code_idx = headers.index('NodeCode') + easting_idx = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + northing_idx = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + except: return positions + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[node_code_idx].strip() + positions[nid] = { + 'easting': float(parts[easting_idx]), + 'northing': float(parts[northing_idx]), + 'depth': float(parts[headers.index('Aslaid Depth')]) if 'Aslaid Depth' in headers else 0.0 + } + except: continue + return positions + +def scan_all(): + index = {} + pos = load_node_positions(POSITIONS_CSV) + print(f"Positions chargées: {len(pos)}") + + file_count = 0 + for root in DATA_ROOTS: + print(f"Scan de {root}...") + for h5_file in root.rglob("*.h5"): + # Extraction ID node et timestamp + match = re.search(r'_b(\d+)_.*?(\d{10})\.h5$', h5_file.name) + if not match: continue + + node_id = match.group(1) + ts = int(match.group(2)) + date_str = datetime.fromtimestamp(ts).strftime('%Y-%m-%d') + + if node_id not in index: + index[node_id] = {'id': node_id, 'position': pos.get(node_id), 'dates': {}, 'hasDates': True} + + if date_str not in index[node_id]['dates']: + index[node_id]['dates'][date_str] = [] + + index[node_id]['dates'][date_str].append({ + 'path': str(h5_file), + 'timestamp': ts, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'], + 'size_bytes': h5_file.stat().st_size + }) + file_count += 1 + + # Ajouter les nodes sans fichiers mais avec position + for nid, p in pos.items(): + if nid not in index: + index[nid] = {'id': nid, 'position': p, 'dates': {}, 'hasDates': False} + + full_index = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': 200, + 'nodes': index, + 'dates': sorted(list(set(d for n in index.values() for d in n['dates'].keys()))) + } + + with open(OUTPUT_INDEX, 'w') as f: json.dump(full_index, f, indent=2) + print(f"Index total généré: {file_count} fichiers, {len(index)} nodes.") + +if __name__ == '__main__': scan_all() diff --git a/index_all_v3.py b/index_all_v3.py new file mode 100644 index 0000000..99153ee --- /dev/null +++ b/index_all_v3.py @@ -0,0 +1,69 @@ +import os, re, json, csv +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +FILENAME_PATTERN = re.compile(r'_b(\d+)_.*?_(\d{10})\.h5$', re.IGNORECASE) +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + di = headers.index('Aslaid Depth') if 'Aslaid Depth' in headers else -1 + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = {'easting': float(parts[ei]), 'northing': float(parts[oi]), 'depth': float(parts[di]) if di != -1 else 0.0} + except: continue + return positions + +def scan(): + pos = load_pos() + index = {} + file_count = 0 + for root in DATA_ROOTS: + print(f"Scanning {root}...") + for h5_file in root.rglob("*.h5"): + match = FILENAME_PATTERN.search(h5_file.name) + if not match: continue + nid, ts = match.group(1), int(match.group(2)) + # Utilisation de la date du dossier parent si possible, sinon du timestamp + date_str = datetime.fromtimestamp(ts).strftime('%Y-%m-%d') + # Forcer la date du dossier (plus fiable pour l'utilisateur) + for p in h5_file.parents: + if re.match(r'2020-09-\d{2}', p.name): + date_str = p.name + break + + if nid not in index: + index[nid] = {'id': nid, 'position': pos.get(nid), 'dates': {}, 'hasDates': True} + if date_str not in index[nid]['dates']: + index[nid]['dates'][date_str] = [] + index[nid]['dates'][date_str].append({'path': str(h5_file), 'timestamp': ts, 'channels': ['ch0', 'ch1', 'ch2', 'ch3']}) + file_count += 1 + + for nid, p in pos.items(): + if nid not in index: index[nid] = {'id': nid, 'position': p, 'dates': {}, 'hasDates': False} + + full = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': 200, + 'nodes': index, + 'dates': sorted(list(set(d for n in index.values() for d in n['dates'].keys()))) + } + with open(OUTPUT_INDEX, 'w') as f: json.dump(full, f, indent=2) + print(f"Index: {file_count} files, {len(index)} nodes, {len(full['dates'])} dates.") + +if __name__ == '__main__': scan() diff --git a/index_data_only.py b/index_data_only.py new file mode 100644 index 0000000..7c00d1b --- /dev/null +++ b/index_data_only.py @@ -0,0 +1,105 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime, timedelta +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[headers.index('Aslaid Depth')]) if 'Aslaid Depth' in headers else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + nodes = {} + all_dates = set() + file_count = 0 + + print("🔍 Scanning ONLY 'data' H5 files (ignoring 'aux')...") + all_h5_files = [] + for root in DATA_ROOTS: + all_h5_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_h5_files): + # FILTRE : Uniquement les fichiers contenant "data" + if "_data_" not in h5_path.name.lower(): + continue + + try: + match = re.search(r'auto_(\d+)_(\d{6})_b(\d+)_.*?_(\d{10})\.h5$', h5_path.name) + if not match: continue + + julian_day = int(match.group(1)) + time_str = match.group(2) + node_id = match.group(3) + + date_ref = datetime(2020, 1, 1) + timedelta(days=julian_day - 1) + date_str = date_ref.strftime('%Y-%m-%d') + + h, m, s = int(time_str[:2]), int(time_str[2:4]), int(time_str[4:6]) + actual_start_ts = int(datetime(2020, 1, 1).timestamp() + (julian_day - 1) * 86400 + h * 3600 + m * 60 + s) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + duration = f['adc_values'].shape[0] / SAMPLE_RATE + actual_end_ts = actual_start_ts + duration + + all_dates.add(date_str) + + if node_id not in nodes: + nodes[node_id] = { + 'id': node_id, + 'position': pos.get(node_id), + 'files': [] + } + + # On extrait le canal du nom de fichier pour un matching plus précis + channel_match = re.search(r'_ch(\d+)_', h5_path.name) + channel = f"ch{channel_match.group(1)}" if channel_match else "ch0" + + nodes[node_id]['files'].append({ + 'path': str(h5_path), + 'start': actual_start_ts, + 'end': actual_end_ts, + 'julian': julian_day, + 'channel': channel # Canal spécifique au fichier + }) + file_count += 1 + except: continue + + result = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': nodes, + 'dates': sorted(list(all_dates)) + } + + with open(OUTPUT_INDEX, 'w') as f: + json.dump(result, f, indent=2) + + print(f"✅ Index updated: {file_count} 'data' files, {len(nodes)} nodes.") + +if __name__ == '__main__': scan() diff --git a/index_time_ranges.py b/index_time_ranges.py new file mode 100644 index 0000000..7457a7f --- /dev/null +++ b/index_time_ranges.py @@ -0,0 +1,57 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def scan(): + index = {} + file_count = 0 + print("Scanning H5 files for time ranges...") + + # On récupère d'abord les fichiers + all_files = [] + for root in DATA_ROOTS: + all_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_files): + try: + # On extrait ID node du nom de fichier + match = re.search(r'_b(\d+)_', h5_path.name) + if not match: continue + nid = match.group(1) + + # On ouvre le fichier pour avoir le VRAI timestamp et la durée + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + ds = f['adc_values'] + start_ts = int(ds.attrs.get('timestamp', 0)) + if start_ts == 0: continue + + duration = ds.shape[0] / SAMPLE_RATE + end_ts = start_ts + duration + + if nid not in index: index[nid] = [] + index[nid].append({ + 'path': str(h5_path), + 'start': start_ts, + 'end': end_ts, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'] + }) + file_count += 1 + except: continue + + # Sauvegarder l'index + with open(OUTPUT_INDEX, 'w') as f: + json.dump({ + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'files_by_node': index + }, f) + + print(f"Index généré: {file_count} fichiers avec plages temporelles réelles.") + +if __name__ == '__main__': scan() diff --git a/index_time_ranges_v2.py b/index_time_ranges_v2.py new file mode 100644 index 0000000..4bfab2f --- /dev/null +++ b/index_time_ranges_v2.py @@ -0,0 +1,87 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + di = headers.index('Aslaid Depth') if 'Aslaid Depth' in headers else -1 + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[di]) if di != -1 else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + index = {} + file_count = 0 + print(f"Scanning H5 files... Positions loaded: {len(pos)}") + + all_files = [] + for root in DATA_ROOTS: + all_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_files): + try: + match = re.search(r'_b(\d+)_', h5_path.name) + if not match: continue + nid = match.group(1) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + ds = f['adc_values'] + start_ts = int(ds.attrs.get('timestamp', 0)) + if start_ts == 0: continue + + duration = ds.shape[0] / SAMPLE_RATE + end_ts = start_ts + duration + + if nid not in index: + index[nid] = { + 'id': nid, + 'position': pos.get(nid), + 'files': [] + } + + index[nid]['files'].append({ + 'path': str(h5_path), + 'start': start_ts, + 'end': end_ts, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'] + }) + file_count += 1 + except: continue + + # Sauvegarder l'index + with open(OUTPUT_INDEX, 'w') as f: + json.dump({ + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': index + }, f) + + print(f"Index généré: {file_count} fichiers, {len(index)} nodes avec positions.") + +if __name__ == '__main__': scan() diff --git a/index_tmp.py b/index_tmp.py new file mode 100644 index 0000000..3bc712a --- /dev/null +++ b/index_tmp.py @@ -0,0 +1,108 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime, timedelta +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/tmp/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[headers.index('Aslaid Depth')]) if 'Aslaid Depth' in headers else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + nodes = {} + all_dates = set() + file_count = 0 + + print("🔍 Scanning all H5 files (Trusting filenames/folders for dates)...") + all_h5_files = [] + for root in DATA_ROOTS: + all_h5_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_h5_files): + try: + # Pattern: auto_{julian}_{time}_b{node}_..._{ts}.h5 + match = re.search(r'auto_(\d+)_(\d{6})_b(\d+)_.*?_(\d{10})\.h5$', h5_path.name) + if not match: continue + + julian_day = int(match.group(1)) + time_str = match.group(2) + node_id = match.group(3) + internal_ts = int(match.group(4)) + + # Calculer la date réelle à partir du Julian Day (2020) + # Julian 1 = Jan 1. Julian 255 = Sept 11. + date_ref = datetime(2020, 1, 1) + timedelta(days=julian_day - 1) + date_str = date_ref.strftime('%Y-%m-%d') + + # Heure du fichier + hours = int(time_str[:2]) + minutes = int(time_str[2:4]) + seconds = int(time_str[4:6]) + + # Timestamp calculé (plus fiable pour le matching que l'interne buggé) + actual_start_ts = int(datetime(2020, 1, 1).timestamp() + (julian_day - 1) * 86400 + hours * 3600 + minutes * 60 + seconds) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + duration = f['adc_values'].shape[0] / SAMPLE_RATE + actual_end_ts = actual_start_ts + duration + + all_dates.add(date_str) + + if node_id not in nodes: + nodes[node_id] = { + 'id': node_id, + 'position': pos.get(node_id), + 'files': [] + } + + nodes[node_id]['files'].append({ + 'path': str(h5_path), + 'start': actual_start_ts, + 'end': actual_end_ts, + 'julian': julian_day, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'] + }) + file_count += 1 + except: continue + + # Sauvegarder l'index complet + result = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': nodes, + 'dates': sorted(list(all_dates)) + } + + with open(OUTPUT_INDEX, 'w') as f: + json.dump(result, f, indent=2) + + print(f"✅ Indexing complete: {file_count} files, {len(nodes)} nodes, {len(all_dates)} dates.") + print(f"📅 Dates covered: {sorted(list(all_dates))}") + +if __name__ == '__main__': scan() diff --git a/index_ultimate.py b/index_ultimate.py new file mode 100644 index 0000000..2c9516c --- /dev/null +++ b/index_ultimate.py @@ -0,0 +1,96 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + di = headers.index('Aslaid Depth') if 'Aslaid Depth' in headers else -1 + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[di]) if di != -1 else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + nodes = {} + all_dates = set() + file_count = 0 + + print("🔍 Scanning all H5 files...") + all_h5_files = [] + for root in DATA_ROOTS: + all_h5_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_h5_files): + try: + match = re.search(r'_b(\d+)_', h5_path.name) + if not match: continue + nid = match.group(1) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + ds = f['adc_values'] + start_ts = int(ds.attrs.get('timestamp', 0)) + if start_ts == 0: continue + + duration = ds.shape[0] / SAMPLE_RATE + end_ts = start_ts + duration + + # Ajouter la date à la liste globale + date_str = datetime.fromtimestamp(start_ts).strftime('%Y-%m-%d') + all_dates.add(date_str) + + if nid not in nodes: + nodes[nid] = { + 'id': nid, + 'position': pos.get(nid), + 'files': [] + } + + nodes[nid]['files'].append({ + 'path': str(h5_path), + 'start': start_ts, + 'end': end_ts, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'] + }) + file_count += 1 + except: continue + + # Sauvegarder l'index complet + result = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': nodes, + 'dates': sorted(list(all_dates)) + } + + with open(OUTPUT_INDEX, 'w') as f: + json.dump(result, f, indent=2) + + print(f"✅ Indexing complete: {file_count} files, {len(nodes)} nodes, {len(all_dates)} dates.") + print(f"📅 Dates covered: {sorted(list(all_dates))}") + +if __name__ == '__main__': scan() diff --git a/index_ultimate_v2.py b/index_ultimate_v2.py new file mode 100644 index 0000000..45299c3 --- /dev/null +++ b/index_ultimate_v2.py @@ -0,0 +1,108 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime, timedelta +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[headers.index('Aslaid Depth')]) if 'Aslaid Depth' in headers else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + nodes = {} + all_dates = set() + file_count = 0 + + print("🔍 Scanning all H5 files (Trusting filenames/folders for dates)...") + all_h5_files = [] + for root in DATA_ROOTS: + all_h5_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_h5_files): + try: + # Pattern: auto_{julian}_{time}_b{node}_..._{ts}.h5 + match = re.search(r'auto_(\d+)_(\d{6})_b(\d+)_.*?_(\d{10})\.h5$', h5_path.name) + if not match: continue + + julian_day = int(match.group(1)) + time_str = match.group(2) + node_id = match.group(3) + internal_ts = int(match.group(4)) + + # Calculer la date réelle à partir du Julian Day (2020) + # Julian 1 = Jan 1. Julian 255 = Sept 11. + date_ref = datetime(2020, 1, 1) + timedelta(days=julian_day - 1) + date_str = date_ref.strftime('%Y-%m-%d') + + # Heure du fichier + hours = int(time_str[:2]) + minutes = int(time_str[2:4]) + seconds = int(time_str[4:6]) + + # Timestamp calculé (plus fiable pour le matching que l'interne buggé) + actual_start_ts = int(datetime(2020, 1, 1).timestamp() + (julian_day - 1) * 86400 + hours * 3600 + minutes * 60 + seconds) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + duration = f['adc_values'].shape[0] / SAMPLE_RATE + actual_end_ts = actual_start_ts + duration + + all_dates.add(date_str) + + if node_id not in nodes: + nodes[node_id] = { + 'id': node_id, + 'position': pos.get(node_id), + 'files': [] + } + + nodes[node_id]['files'].append({ + 'path': str(h5_path), + 'start': actual_start_ts, + 'end': actual_end_ts, + 'julian': julian_day, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'] + }) + file_count += 1 + except: continue + + # Sauvegarder l'index complet + result = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': nodes, + 'dates': sorted(list(all_dates)) + } + + with open(OUTPUT_INDEX, 'w') as f: + json.dump(result, f, indent=2) + + print(f"✅ Indexing complete: {file_count} files, {len(nodes)} nodes, {len(all_dates)} dates.") + print(f"📅 Dates covered: {sorted(list(all_dates))}") + +if __name__ == '__main__': scan() diff --git a/precompute_all_v4.py b/precompute_all_v4.py new file mode 100644 index 0000000..8de26ba --- /dev/null +++ b/precompute_all_v4.py @@ -0,0 +1,63 @@ +import json, sys, os, numpy as np, h5py +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +INDEX_PATH = Path("/mnt/kingston/seismic_webapp/data/index.json") +OUTPUT_DIR = Path("/mnt/kingston/seismic_webapp/data/rms_cache") +SAMPLE_RATE = 200 + +def fix_path(p): + p = p.replace('\\', '/') + if p.startswith('F:/'): return '/mnt/kingston/' + p[3:] + if p.startswith('E:/'): return '/mnt/data_sdb1/' + p[3:] + return p + +def compute_rms(h5_path): + h5_path = fix_path(h5_path) + if not os.path.exists(h5_path): return None + try: + with h5py.File(h5_path, 'r') as f: + ds = f['adc_values'] + start_ts = int(ds.attrs.get('timestamp', 0)) + if start_ts == 0: return None + # On prend 5000 samples pour un RMS représentatif + samples = ds[0:5000] + rms = float(np.sqrt(np.mean(samples.astype(np.float64)**2))) + return [{'ts': start_ts, 'rms': rms}] + except: return None + +def main(): + with open(INDEX_PATH, 'r') as f: index = json.load(f) + nodes = index.get('nodes', {}) + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + # Toutes les dates du système + all_dates = set() + for n in nodes.values(): + if 'dates' in n: all_dates.update(n['dates'].keys()) + + print(f"Dates à traiter: {sorted(list(all_dates))}") + + channel = "ch0" + for date in sorted(list(all_dates)): + output_file = OUTPUT_DIR / f"rms_{date}_{channel}.json" + # On force la régénération pour être sûr d'avoir tout + print(f"Processing {date}...") + results = {} + for nid, node in tqdm(nodes.items(), desc=f"Nodes {date}"): + files = node.get('dates', {}).get(date, []) + # On cherche les fichiers data prioritaires + target = next((f for f in files if '_data_' in f['path'] and f'_{channel}_' in f['path']), None) + if not target and files: target = files[0] # Fallback + + if target: + data = compute_rms(target['path']) + if data: results[nid] = data + + if results: + with open(output_file, 'w') as f: + json.dump({'date':date, 'channel':channel, 'nodes':results}, f) + print(f"Sauvegardé {output_file.name}: {len(results)} nodes") + +if __name__ == '__main__': main() diff --git a/precompute_ultimate.py b/precompute_ultimate.py new file mode 100644 index 0000000..acc3570 --- /dev/null +++ b/precompute_ultimate.py @@ -0,0 +1,62 @@ +import json, sys, os, numpy as np, h5py, re +from pathlib import Path +from datetime import datetime, timedelta +from tqdm import tqdm + +INDEX_PATH = Path("/mnt/kingston/seismic_webapp/data/index.json") +OUTPUT_DIR = Path("/mnt/kingston/seismic_webapp/data/rms_cache") +SAMPLE_RATE = 200 + +def fix_path(p): + p = p.replace('\\', '/') + if p.startswith('F:/'): return '/mnt/kingston/' + p[3:] + if p.startswith('E:/'): return '/mnt/data_sdb1/' + p[3:] + return p + +def compute_rms(h5_path): + h5_path = fix_path(h5_path) + if not os.path.exists(h5_path): return None + try: + # Extraire le timestamp réel du nom de fichier (Julian day) + match = re.search(r'auto_(\d+)_(\d{6})_b', os.path.basename(h5_path)) + if not match: return None + julian, time_str = int(match.group(1)), match.group(2) + h, m, s = int(time_str[:2]), int(time_str[2:4]), int(time_str[4:6]) + start_ts = int(datetime(2020, 1, 1).timestamp() + (julian - 1) * 86400 + h * 3600 + m * 60 + s) + + with h5py.File(h5_path, 'r') as f: + ds = f['adc_values'] + samples = ds[0:5000] + rms = float(np.sqrt(np.mean(samples.astype(np.float64)**2))) + return [{'ts': start_ts, 'rms': rms}] + except: return None + +def main(): + with open(INDEX_PATH, 'r') as f: index = json.load(f) + nodes = index.get('nodes', {}) + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + for date in index['dates']: + channel = "ch0" + output_file = OUTPUT_DIR / f"rms_{{date}}_{{channel}}.json" + print(f"Processing {date}...") + results = {} + for nid, node in tqdm(nodes.items(), desc=f"Nodes {date}"): + files = node.get('files', []) + # Filtrer les fichiers par Julian Day correspondant à la date + dt = datetime.strptime(date, '%Y-%m-%d') + target_julian = dt.timetuple().tm_yday + + target = next((f for f in files if f['julian'] == target_julian and f'_{{channel}}_' in f['path']), None) + if not target and files: + target = next((f for f in files if f['julian'] == target_julian), None) + + if target: + data = compute_rms(target['path']) + if data: results[nid] = data + + if results: + with open(output_file, 'w') as f: + json.dump({'date':date, 'channel':channel, 'nodes':results}, f) + +if __name__ == '__main__': main() \ No newline at end of file diff --git a/real_shots.json b/real_shots.json new file mode 100644 index 0000000..cc5d22e --- /dev/null +++ b/real_shots.json @@ -0,0 +1 @@ +{"type": "FeatureCollection", "features": [{"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766069, 43.351834]}, "properties": {"category": "real_shot", "line": "0961", "easting": 562083.7, "northing": 4800171.5, "time": "08:56:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765497, 43.351651]}, "properties": {"category": "real_shot", "line": "0961", "easting": 562037.5, "northing": 4800150.8, "time": "08:56:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764889, 43.351501]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561988.4, "northing": 4800133.6, "time": "08:56:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764308, 43.351317]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561941.5, "northing": 4800112.8, "time": "08:57:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763877, 43.350982]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561906.9, "northing": 4800075.3, "time": "08:57:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763447, 43.350645]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561872.4, "northing": 4800037.5, "time": "08:58:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762956, 43.350372]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561832.9, "northing": 4800006.8, "time": "08:58:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762445, 43.35012]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561791.7, "northing": 4799978.5, "time": "08:58:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761922, 43.349867]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561749.6, "northing": 4799950.0, "time": "08:59:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761416, 43.349619]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561708.8, "northing": 4799922.1, "time": "08:59:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760905, 43.349369]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561667.7, "northing": 4799893.9, "time": "08:59:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760396, 43.349117]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561626.7, "northing": 4799865.6, "time": "09:00:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759885, 43.348866]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561585.5, "northing": 4799837.3, "time": "09:00:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759364, 43.348624]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561543.5, "northing": 4799810.0, "time": "09:00:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758856, 43.348365]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561502.6, "northing": 4799780.9, "time": "09:01:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758358, 43.348101]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561462.5, "northing": 4799751.2, "time": "09:01:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757846, 43.347849]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561421.3, "northing": 4799722.9, "time": "09:01:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757336, 43.347597]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561380.2, "northing": 4799694.5, "time": "09:02:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756834, 43.347336]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561339.8, "northing": 4799665.1, "time": "09:02:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756323, 43.347082]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561298.6, "northing": 4799636.6, "time": "09:02:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755791, 43.346855]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561255.7, "northing": 4799610.9, "time": "09:03:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755277, 43.346604]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561214.3, "northing": 4799582.7, "time": "09:03:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754762, 43.346354]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561172.8, "northing": 4799554.6, "time": "09:03:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754239, 43.346116]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561130.7, "northing": 4799527.7, "time": "09:04:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753728, 43.345864]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561089.5, "northing": 4799499.4, "time": "09:04:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753219, 43.345611]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561048.5, "northing": 4799470.9, "time": "09:04:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752712, 43.345352]}, "properties": {"category": "real_shot", "line": "0961", "easting": 561007.7, "northing": 4799441.8, "time": "09:05:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752206, 43.345095]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560966.9, "northing": 4799412.9, "time": "09:05:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751703, 43.344836]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560926.4, "northing": 4799383.7, "time": "09:05:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751197, 43.344576]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560885.7, "northing": 4799354.5, "time": "09:06:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750692, 43.344318]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560845.0, "northing": 4799325.5, "time": "09:06:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750188, 43.344064]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560804.4, "northing": 4799296.9, "time": "09:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749678, 43.343808]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560763.3, "northing": 4799268.1, "time": "09:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749166, 43.343554]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560722.1, "northing": 4799239.5, "time": "09:07:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748655, 43.343304]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560680.9, "northing": 4799211.4, "time": "09:07:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748139, 43.343059]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560639.3, "northing": 4799183.8, "time": "09:08:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747627, 43.342801]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560598.1, "northing": 4799154.8, "time": "09:08:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747129, 43.342538]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560558.0, "northing": 4799125.2, "time": "09:09:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746631, 43.342273]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560517.9, "northing": 4799095.4, "time": "09:09:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746125, 43.342015]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560477.1, "northing": 4799066.4, "time": "09:09:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745617, 43.34176]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560436.2, "northing": 4799037.7, "time": "09:10:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745109, 43.341505]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560395.3, "northing": 4799009.0, "time": "09:10:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744599, 43.341251]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560354.2, "northing": 4798980.5, "time": "09:10:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744088, 43.341]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560313.0, "northing": 4798952.2, "time": "09:11:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743569, 43.340756]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560271.2, "northing": 4798924.7, "time": "09:11:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743059, 43.340502]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560230.1, "northing": 4798896.2, "time": "09:11:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74256, 43.340236]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560189.9, "northing": 4798866.3, "time": "09:12:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742062, 43.339972]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560149.8, "northing": 4798836.6, "time": "09:12:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741554, 43.339716]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560108.9, "northing": 4798807.8, "time": "09:12:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741038, 43.339468]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560067.3, "northing": 4798779.9, "time": "09:13:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74052, 43.339222]}, "properties": {"category": "real_shot", "line": "0961", "easting": 560025.6, "northing": 4798752.2, "time": "09:13:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740006, 43.338976]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559984.1, "northing": 4798724.5, "time": "09:14:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7395, 43.338717]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559943.4, "northing": 4798695.4, "time": "09:14:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738996, 43.33846]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559902.8, "northing": 4798666.4, "time": "09:14:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73848, 43.33821]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559861.2, "northing": 4798638.3, "time": "09:15:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737985, 43.337942]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559821.3, "northing": 4798608.2, "time": "09:15:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737476, 43.33769]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559780.3, "northing": 4798579.8, "time": "09:15:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736958, 43.337442]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559738.6, "northing": 4798551.9, "time": "09:16:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736449, 43.33719]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559697.6, "northing": 4798523.6, "time": "09:16:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735924, 43.336955]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559655.2, "northing": 4798497.1, "time": "09:16:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735407, 43.336704]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559613.6, "northing": 4798468.9, "time": "09:17:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734918, 43.336426]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559574.2, "northing": 4798437.7, "time": "09:17:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734432, 43.336152]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559535.1, "northing": 4798406.9, "time": "09:17:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733915, 43.335906]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559493.4, "northing": 4798379.2, "time": "09:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733406, 43.335654]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559452.4, "northing": 4798350.8, "time": "09:18:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732879, 43.335417]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559409.9, "northing": 4798324.1, "time": "09:19:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732365, 43.335167]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559368.5, "northing": 4798296.0, "time": "09:19:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731865, 43.334904]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559328.2, "northing": 4798266.5, "time": "09:19:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731356, 43.334648]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559287.2, "northing": 4798237.7, "time": "09:20:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730866, 43.334374]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559247.7, "northing": 4798206.9, "time": "09:20:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730369, 43.334112]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559207.7, "northing": 4798177.4, "time": "09:20:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729871, 43.333841]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559167.6, "northing": 4798147.0, "time": "09:21:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729375, 43.333576]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559127.6, "northing": 4798117.2, "time": "09:21:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728847, 43.33334]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559085.1, "northing": 4798090.6, "time": "09:21:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728337, 43.333086]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559044.0, "northing": 4798062.1, "time": "09:22:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727807, 43.332855]}, "properties": {"category": "real_shot", "line": "0961", "easting": 559001.2, "northing": 4798036.0, "time": "09:22:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727292, 43.332607]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558959.7, "northing": 4798008.1, "time": "09:23:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726766, 43.332372]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558917.3, "northing": 4797981.6, "time": "09:23:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726262, 43.332111]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558876.7, "northing": 4797952.3, "time": "09:23:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725763, 43.331847]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558836.5, "northing": 4797922.6, "time": "09:24:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725269, 43.331578]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558796.7, "northing": 4797892.4, "time": "09:24:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724763, 43.331319]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558755.9, "northing": 4797863.3, "time": "09:24:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724277, 43.33104]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558716.8, "northing": 4797832.0, "time": "09:25:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72378, 43.330773]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558676.8, "northing": 4797802.0, "time": "09:25:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723258, 43.330533]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558634.7, "northing": 4797775.0, "time": "09:25:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722752, 43.330278]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558593.9, "northing": 4797746.3, "time": "09:26:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722219, 43.330047]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558550.9, "northing": 4797720.2, "time": "09:26:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.721703, 43.329798]}, "properties": {"category": "real_shot", "line": "0961", "easting": 558509.3, "northing": 4797692.2, "time": "09:26:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766302, 43.351582]}, "properties": {"category": "real_shot", "line": "0963", "easting": 562102.8, "northing": 4800143.7, "time": "11:51:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765789, 43.351336]}, "properties": {"category": "real_shot", "line": "0963", "easting": 562061.5, "northing": 4800116.0, "time": "11:51:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765274, 43.351089]}, "properties": {"category": "real_shot", "line": "0963", "easting": 562020.0, "northing": 4800088.2, "time": "11:52:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764744, 43.350858]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561977.3, "northing": 4800062.1, "time": "11:52:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764227, 43.350615]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561935.6, "northing": 4800034.7, "time": "11:52:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763734, 43.350341]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561896.0, "northing": 4800004.0, "time": "11:53:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763238, 43.350072]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561856.0, "northing": 4799973.7, "time": "11:53:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762725, 43.349824]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561814.7, "northing": 4799945.8, "time": "11:53:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762225, 43.349559]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561774.5, "northing": 4799916.0, "time": "11:53:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761726, 43.349293]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561734.3, "northing": 4799886.1, "time": "11:54:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761224, 43.349031]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561693.9, "northing": 4799856.6, "time": "11:54:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76072, 43.348771]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561653.3, "northing": 4799827.4, "time": "11:54:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760212, 43.348517]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561612.4, "northing": 4799798.8, "time": "11:55:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759708, 43.348257]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561571.8, "northing": 4799769.5, "time": "11:55:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759202, 43.348]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561531.0, "northing": 4799740.6, "time": "11:55:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758695, 43.347744]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561490.2, "northing": 4799711.8, "time": "11:55:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758185, 43.347491]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561449.1, "northing": 4799683.3, "time": "11:56:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757672, 43.34724]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561407.8, "northing": 4799655.1, "time": "11:56:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757153, 43.346998]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561366.0, "northing": 4799627.8, "time": "11:56:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756653, 43.346733]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561325.7, "northing": 4799598.0, "time": "11:57:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75615, 43.346471]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561285.2, "northing": 4799568.6, "time": "11:57:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755636, 43.346223]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561243.8, "northing": 4799540.6, "time": "11:57:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755121, 43.345976]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561202.3, "northing": 4799512.8, "time": "11:58:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754629, 43.345702]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561162.7, "northing": 4799482.0, "time": "11:58:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75413, 43.345436]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561122.5, "northing": 4799452.2, "time": "11:58:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753627, 43.345177]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561082.0, "northing": 4799423.0, "time": "11:58:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753115, 43.344925]}, "properties": {"category": "real_shot", "line": "0963", "easting": 561040.8, "northing": 4799394.7, "time": "11:59:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752595, 43.344682]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560998.9, "northing": 4799367.3, "time": "11:59:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752074, 43.344441]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560956.9, "northing": 4799340.2, "time": "11:59:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751579, 43.344173]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560917.0, "northing": 4799310.0, "time": "12:00:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751083, 43.343904]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560877.1, "northing": 4799279.8, "time": "12:00:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750576, 43.343647]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560836.3, "northing": 4799250.9, "time": "12:00:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750061, 43.3434]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560794.8, "northing": 4799223.1, "time": "12:00:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749538, 43.343162]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560752.6, "northing": 4799196.3, "time": "12:01:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749028, 43.342907]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560711.5, "northing": 4799167.6, "time": "12:01:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748526, 43.342644]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560671.1, "northing": 4799138.0, "time": "12:01:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748017, 43.342391]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560630.1, "northing": 4799109.5, "time": "12:02:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747496, 43.34215]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560588.1, "northing": 4799082.4, "time": "12:02:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746989, 43.341893]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560547.3, "northing": 4799053.5, "time": "12:02:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746488, 43.341629]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560506.9, "northing": 4799023.8, "time": "12:02:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745971, 43.341385]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560465.3, "northing": 4798996.3, "time": "12:03:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745476, 43.341114]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560425.4, "northing": 4798965.9, "time": "12:03:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744972, 43.340855]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560384.8, "northing": 4798936.7, "time": "12:03:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744452, 43.340615]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560342.9, "northing": 4798909.7, "time": "12:04:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743956, 43.340344]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560303.0, "northing": 4798879.3, "time": "12:04:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743454, 43.340083]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560262.5, "northing": 4798849.9, "time": "12:04:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742935, 43.33984]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560220.7, "northing": 4798822.6, "time": "12:05:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742435, 43.339576]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560180.4, "northing": 4798792.9, "time": "12:05:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741932, 43.339315]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560139.9, "northing": 4798763.5, "time": "12:05:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741413, 43.339072]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560098.1, "northing": 4798736.2, "time": "12:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740911, 43.33881]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560057.7, "northing": 4798706.7, "time": "12:06:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740418, 43.338538]}, "properties": {"category": "real_shot", "line": "0963", "easting": 560018.0, "northing": 4798676.1, "time": "12:06:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73991, 43.338284]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559977.0, "northing": 4798647.6, "time": "12:06:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739391, 43.33804]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559935.2, "northing": 4798620.1, "time": "12:07:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738887, 43.337779]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559894.6, "northing": 4798590.8, "time": "12:07:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738376, 43.337527]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559853.4, "northing": 4798562.4, "time": "12:07:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737859, 43.337282]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559811.8, "northing": 4798534.8, "time": "12:07:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737341, 43.337038]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559770.0, "northing": 4798507.4, "time": "12:08:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736816, 43.3368]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559727.7, "northing": 4798480.5, "time": "12:08:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736291, 43.336562]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559685.4, "northing": 4798453.7, "time": "12:08:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735768, 43.336324]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559643.2, "northing": 4798426.9, "time": "12:09:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735272, 43.336054]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559603.3, "northing": 4798396.6, "time": "12:09:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734766, 43.335797]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559562.5, "northing": 4798367.7, "time": "12:09:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734239, 43.335564]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559520.0, "northing": 4798341.4, "time": "12:10:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733728, 43.335311]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559478.8, "northing": 4798313.0, "time": "12:10:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73322, 43.335055]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559437.9, "northing": 4798284.2, "time": "12:10:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732703, 43.33481]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559396.2, "northing": 4798256.6, "time": "12:10:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732176, 43.334576]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559353.7, "northing": 4798230.2, "time": "12:11:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731668, 43.334319]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559312.8, "northing": 4798201.3, "time": "12:11:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731174, 43.334049]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559273.0, "northing": 4798171.0, "time": "12:11:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730681, 43.333777]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559233.3, "northing": 4798140.5, "time": "12:12:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730178, 43.333517]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559192.8, "northing": 4798111.2, "time": "12:12:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72966, 43.333274]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559151.0, "northing": 4798083.9, "time": "12:12:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729162, 43.333006]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559110.9, "northing": 4798053.8, "time": "12:12:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728672, 43.332731]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559071.5, "northing": 4798022.9, "time": "12:13:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728166, 43.332474]}, "properties": {"category": "real_shot", "line": "0963", "easting": 559030.7, "northing": 4797994.0, "time": "12:13:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727652, 43.332226]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558989.3, "northing": 4797966.1, "time": "12:13:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727133, 43.331983]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558947.4, "northing": 4797938.7, "time": "12:14:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726641, 43.331711]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558907.8, "northing": 4797908.1, "time": "12:14:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726143, 43.331443]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558867.7, "northing": 4797878.0, "time": "12:14:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725638, 43.331187]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558827.0, "northing": 4797849.2, "time": "12:15:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725123, 43.330937]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558785.5, "northing": 4797821.1, "time": "12:15:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724603, 43.330695]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558743.6, "northing": 4797793.9, "time": "12:15:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724106, 43.330429]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558703.5, "northing": 4797764.0, "time": "12:15:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723607, 43.330164]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558663.3, "northing": 4797734.2, "time": "12:16:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723108, 43.329899]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558623.1, "northing": 4797704.4, "time": "12:16:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722607, 43.329635]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558582.8, "northing": 4797674.8, "time": "12:16:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722087, 43.329395]}, "properties": {"category": "real_shot", "line": "0963", "easting": 558540.8, "northing": 4797647.7, "time": "12:17:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722429, 43.329038]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558568.9, "northing": 4797608.3, "time": "09:30:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722945, 43.329278]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558610.5, "northing": 4797635.4, "time": "09:30:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723476, 43.329508]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558653.3, "northing": 4797661.3, "time": "09:30:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724006, 43.329738]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558696.1, "northing": 4797687.2, "time": "09:31:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724526, 43.329982]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558738.0, "northing": 4797714.6, "time": "09:31:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724986, 43.330287]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558775.0, "northing": 4797748.8, "time": "09:31:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725447, 43.3306]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558812.1, "northing": 4797783.9, "time": "09:32:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725967, 43.330838]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558854.0, "northing": 4797810.7, "time": "09:32:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726509, 43.331055]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558897.7, "northing": 4797835.2, "time": "09:32:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727014, 43.331314]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558938.4, "northing": 4797864.3, "time": "09:33:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727522, 43.331568]}, "properties": {"category": "real_shot", "line": "0965", "easting": 558979.4, "northing": 4797892.9, "time": "09:33:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728012, 43.331844]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559018.8, "northing": 4797923.9, "time": "09:34:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728519, 43.3321]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559059.7, "northing": 4797952.7, "time": "09:34:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729026, 43.332357]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559100.5, "northing": 4797981.6, "time": "09:34:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729548, 43.332596]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559142.6, "northing": 4798008.5, "time": "09:35:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730054, 43.332854]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559183.4, "northing": 4798037.5, "time": "09:35:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730574, 43.333097]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559225.3, "northing": 4798064.8, "time": "09:35:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731078, 43.333355]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559265.9, "northing": 4798093.9, "time": "09:36:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731578, 43.33362]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559306.2, "northing": 4798123.6, "time": "09:36:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732093, 43.333868]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559347.7, "northing": 4798151.6, "time": "09:37:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732602, 43.334123]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559388.7, "northing": 4798180.2, "time": "09:37:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733096, 43.334393]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559428.5, "northing": 4798210.6, "time": "09:37:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733611, 43.334639]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559470.0, "northing": 4798238.3, "time": "09:38:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734116, 43.334898]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559510.7, "northing": 4798267.4, "time": "09:38:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734615, 43.335163]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559550.9, "northing": 4798297.2, "time": "09:38:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735123, 43.335419]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559591.8, "northing": 4798326.0, "time": "09:39:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73564, 43.335665]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559633.5, "northing": 4798353.7, "time": "09:39:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736156, 43.335911]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559675.1, "northing": 4798381.3, "time": "09:39:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736654, 43.336177]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559715.2, "northing": 4798411.2, "time": "09:40:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737169, 43.336425]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559756.7, "northing": 4798439.1, "time": "09:40:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737675, 43.336682]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559797.4, "northing": 4798468.0, "time": "09:41:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738183, 43.336938]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559838.4, "northing": 4798496.9, "time": "09:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7387, 43.337184]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559880.0, "northing": 4798524.5, "time": "09:41:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739207, 43.337441]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559920.9, "northing": 4798553.4, "time": "09:42:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73972, 43.33769]}, "properties": {"category": "real_shot", "line": "0965", "easting": 559962.2, "northing": 4798581.5, "time": "09:42:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740238, 43.337935]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560004.0, "northing": 4798609.0, "time": "09:42:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740756, 43.338179]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560045.7, "northing": 4798636.5, "time": "09:43:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741255, 43.338446]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560085.9, "northing": 4798666.5, "time": "09:43:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741765, 43.338698]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560127.0, "northing": 4798694.9, "time": "09:43:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742278, 43.338947]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560168.3, "northing": 4798722.9, "time": "09:44:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742774, 43.339216]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560208.3, "northing": 4798753.1, "time": "09:44:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743293, 43.339465]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560250.1, "northing": 4798781.2, "time": "09:45:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743791, 43.33973]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560290.2, "northing": 4798811.0, "time": "09:45:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74428, 43.339999]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560329.6, "northing": 4798841.2, "time": "09:45:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744788, 43.340254]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560370.5, "northing": 4798869.9, "time": "09:46:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74529, 43.340517]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560410.9, "northing": 4798899.4, "time": "09:46:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74579, 43.340783]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560451.2, "northing": 4798929.3, "time": "09:46:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74631, 43.341025]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560493.1, "northing": 4798956.6, "time": "09:47:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746816, 43.341281]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560533.9, "northing": 4798985.4, "time": "09:47:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747318, 43.341543]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560574.3, "northing": 4799014.8, "time": "09:47:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747836, 43.34179]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560616.0, "northing": 4799042.7, "time": "09:48:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748348, 43.342037]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560657.3, "northing": 4799070.5, "time": "09:48:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748849, 43.342302]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560697.6, "northing": 4799100.3, "time": "09:48:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749365, 43.342549]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560739.2, "northing": 4799128.1, "time": "09:49:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749865, 43.342813]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560779.5, "northing": 4799157.7, "time": "09:49:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750376, 43.343068]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560820.6, "northing": 4799186.4, "time": "09:49:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750895, 43.343309]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560862.5, "northing": 4799213.6, "time": "09:50:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751398, 43.343569]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560903.0, "northing": 4799242.8, "time": "09:50:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751913, 43.343818]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560944.5, "northing": 4799270.8, "time": "09:50:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752431, 43.344061]}, "properties": {"category": "real_shot", "line": "0965", "easting": 560986.2, "northing": 4799298.2, "time": "09:51:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75293, 43.344328]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561026.4, "northing": 4799328.2, "time": "09:51:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753853, 43.344143]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561101.4, "northing": 4799308.4, "time": "10:00:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754351, 43.344394]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561141.5, "northing": 4799336.6, "time": "10:00:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754754, 43.344775]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561173.8, "northing": 4799379.2, "time": "10:01:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755161, 43.345144]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561206.4, "northing": 4799420.5, "time": "10:01:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755547, 43.345523]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561237.3, "northing": 4799462.8, "time": "10:02:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755927, 43.345921]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561267.7, "northing": 4799507.3, "time": "10:02:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756419, 43.346193]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561307.3, "northing": 4799537.9, "time": "10:03:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756935, 43.346434]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561348.9, "northing": 4799565.0, "time": "10:03:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757473, 43.346656]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561392.3, "northing": 4799590.1, "time": "10:03:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757993, 43.346898]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561434.2, "northing": 4799617.3, "time": "10:04:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758509, 43.347146]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561475.7, "northing": 4799645.3, "time": "10:04:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759038, 43.347385]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561518.4, "northing": 4799672.2, "time": "10:04:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759529, 43.347659]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561557.9, "northing": 4799703.0, "time": "10:05:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760031, 43.34792]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561598.3, "northing": 4799732.3, "time": "10:05:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760551, 43.348158]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561640.2, "northing": 4799759.2, "time": "10:05:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761056, 43.348414]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561680.9, "northing": 4799788.0, "time": "10:06:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761575, 43.348658]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561722.7, "northing": 4799815.5, "time": "10:06:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762095, 43.348902]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561764.6, "northing": 4799842.9, "time": "10:06:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762591, 43.34917]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561804.5, "northing": 4799873.1, "time": "10:07:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763082, 43.349445]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561844.0, "northing": 4799904.0, "time": "10:07:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763585, 43.349706]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561884.5, "northing": 4799933.3, "time": "10:07:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764089, 43.349964]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561925.1, "northing": 4799962.3, "time": "10:08:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7646, 43.350215]}, "properties": {"category": "real_shot", "line": "0965", "easting": 561966.3, "northing": 4799990.6, "time": "10:08:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765123, 43.350456]}, "properties": {"category": "real_shot", "line": "0965", "easting": 562008.4, "northing": 4800017.8, "time": "10:08:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765627, 43.350715]}, "properties": {"category": "real_shot", "line": "0965", "easting": 562049.0, "northing": 4800046.9, "time": "10:09:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766135, 43.350972]}, "properties": {"category": "real_shot", "line": "0965", "easting": 562089.9, "northing": 4800075.8, "time": "10:09:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766646, 43.351223]}, "properties": {"category": "real_shot", "line": "0965", "easting": 562131.1, "northing": 4800104.1, "time": "10:09:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.722781, 43.328662]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558597.8, "northing": 4797566.8, "time": "11:24:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723283, 43.328917]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558638.3, "northing": 4797595.5, "time": "11:24:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723785, 43.329181]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558678.7, "northing": 4797625.2, "time": "11:25:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72429, 43.329439]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558719.4, "northing": 4797654.2, "time": "11:25:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724799, 43.329692]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558760.4, "northing": 4797682.6, "time": "11:25:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725314, 43.32994]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558801.9, "northing": 4797710.5, "time": "11:25:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725839, 43.330176]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558844.3, "northing": 4797737.1, "time": "11:26:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726348, 43.330431]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558885.3, "northing": 4797765.8, "time": "11:26:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726846, 43.330699]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558925.4, "northing": 4797795.9, "time": "11:26:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72735, 43.330956]}, "properties": {"category": "real_shot", "line": "0967", "easting": 558966.0, "northing": 4797824.8, "time": "11:27:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727872, 43.331197]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559008.1, "northing": 4797851.9, "time": "11:27:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728384, 43.331447]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559049.4, "northing": 4797880.1, "time": "11:27:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728884, 43.331712]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559089.6, "northing": 4797909.8, "time": "11:27:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729386, 43.331973]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559130.1, "northing": 4797939.2, "time": "11:28:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729891, 43.332231]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559170.8, "northing": 4797968.2, "time": "11:28:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730403, 43.332483]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559212.0, "northing": 4797996.6, "time": "11:28:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730921, 43.332727]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559253.8, "northing": 4798024.0, "time": "11:29:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731434, 43.332978]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559295.1, "northing": 4798052.2, "time": "11:29:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731929, 43.333247]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559335.0, "northing": 4798082.5, "time": "11:29:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732435, 43.333504]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559375.8, "northing": 4798111.4, "time": "11:29:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732944, 43.333758]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559416.8, "northing": 4798139.9, "time": "11:30:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733468, 43.333996]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559459.0, "northing": 4798166.7, "time": "11:30:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733967, 43.334262]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559499.2, "northing": 4798196.6, "time": "11:30:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734465, 43.334528]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559539.3, "northing": 4798226.5, "time": "11:31:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734971, 43.334785]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559580.1, "northing": 4798255.4, "time": "11:31:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735486, 43.335033]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559621.6, "northing": 4798283.3, "time": "11:31:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735998, 43.335284]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559662.9, "northing": 4798311.6, "time": "11:31:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736493, 43.335552]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559702.7, "northing": 4798341.7, "time": "11:32:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736992, 43.33582]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559742.9, "northing": 4798371.8, "time": "11:32:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737498, 43.336075]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559783.7, "northing": 4798400.5, "time": "11:32:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738007, 43.33633]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559824.7, "northing": 4798429.2, "time": "11:33:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738526, 43.336573]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559866.5, "northing": 4798456.6, "time": "11:33:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739027, 43.336836]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559906.9, "northing": 4798486.1, "time": "11:33:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739531, 43.337095]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559947.5, "northing": 4798515.3, "time": "11:33:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740038, 43.337352]}, "properties": {"category": "real_shot", "line": "0967", "easting": 559988.3, "northing": 4798544.1, "time": "11:34:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740549, 43.337605]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560029.5, "northing": 4798572.6, "time": "11:34:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741061, 43.337855]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560070.8, "northing": 4798600.7, "time": "11:34:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741578, 43.338102]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560112.4, "northing": 4798628.5, "time": "11:35:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7421, 43.338341]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560154.5, "northing": 4798655.5, "time": "11:35:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742609, 43.338595]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560195.5, "northing": 4798684.0, "time": "11:35:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743106, 43.338863]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560235.5, "northing": 4798714.2, "time": "11:35:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743611, 43.339121]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560276.2, "northing": 4798743.2, "time": "11:36:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744129, 43.339364]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560318.0, "northing": 4798770.6, "time": "11:36:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744626, 43.339632]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560358.0, "northing": 4798800.7, "time": "11:36:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745128, 43.339895]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560398.4, "northing": 4798830.2, "time": "11:37:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745638, 43.340148]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560439.5, "northing": 4798858.7, "time": "11:37:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746154, 43.340394]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560481.1, "northing": 4798886.4, "time": "11:37:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746666, 43.340646]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560522.3, "northing": 4798914.7, "time": "11:37:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747161, 43.340916]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560562.2, "northing": 4798945.1, "time": "11:38:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747663, 43.341178]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560602.6, "northing": 4798974.6, "time": "11:38:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748178, 43.341424]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560644.1, "northing": 4799002.2, "time": "11:38:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748683, 43.341684]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560684.8, "northing": 4799031.5, "time": "11:39:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74918, 43.341951]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560724.8, "northing": 4799061.5, "time": "11:39:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74968, 43.342214]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560765.1, "northing": 4799091.1, "time": "11:39:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750175, 43.342484]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560804.9, "northing": 4799121.4, "time": "11:39:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750674, 43.34275]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560845.1, "northing": 4799151.3, "time": "11:40:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751188, 43.342997]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560886.5, "northing": 4799179.1, "time": "11:40:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751705, 43.343244]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560928.2, "northing": 4799206.9, "time": "11:40:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752207, 43.343505]}, "properties": {"category": "real_shot", "line": "0967", "easting": 560968.6, "northing": 4799236.3, "time": "11:41:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752712, 43.343764]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561009.3, "northing": 4799265.4, "time": "11:41:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753219, 43.344021]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561050.1, "northing": 4799294.3, "time": "11:41:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753725, 43.344277]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561090.9, "northing": 4799323.1, "time": "11:41:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754228, 43.344537]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561131.4, "northing": 4799352.4, "time": "11:42:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754734, 43.344796]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561172.1, "northing": 4799381.5, "time": "11:42:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75524, 43.345054]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561212.9, "northing": 4799410.5, "time": "11:42:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755747, 43.345309]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561253.7, "northing": 4799439.2, "time": "11:43:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756257, 43.345563]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561294.8, "northing": 4799467.8, "time": "11:43:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756762, 43.345821]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561335.5, "northing": 4799496.8, "time": "11:43:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757268, 43.346079]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561376.2, "northing": 4799525.9, "time": "11:43:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757773, 43.346338]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561416.9, "northing": 4799555.0, "time": "11:44:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758272, 43.346601]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561457.1, "northing": 4799584.6, "time": "11:44:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758781, 43.346857]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561498.1, "northing": 4799613.4, "time": "11:44:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759287, 43.347115]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561538.8, "northing": 4799642.4, "time": "11:45:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759799, 43.347366]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561580.1, "northing": 4799670.6, "time": "11:45:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760333, 43.347593]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561623.1, "northing": 4799696.3, "time": "11:45:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760846, 43.347845]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561664.4, "northing": 4799724.6, "time": "11:45:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761352, 43.3481]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561705.2, "northing": 4799753.3, "time": "11:46:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761856, 43.34836]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561745.8, "northing": 4799782.6, "time": "11:46:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762372, 43.348608]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561787.3, "northing": 4799810.5, "time": "11:46:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7629, 43.348841]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561829.9, "northing": 4799836.8, "time": "11:47:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763409, 43.349096]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561870.9, "northing": 4799865.4, "time": "11:47:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763906, 43.349363]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561910.9, "northing": 4799895.5, "time": "11:47:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764414, 43.34962]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561951.8, "northing": 4799924.4, "time": "11:47:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764933, 43.349861]}, "properties": {"category": "real_shot", "line": "0967", "easting": 561993.6, "northing": 4799951.5, "time": "11:48:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765444, 43.350115]}, "properties": {"category": "real_shot", "line": "0967", "easting": 562034.8, "northing": 4799980.1, "time": "11:48:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765945, 43.350378]}, "properties": {"category": "real_shot", "line": "0967", "easting": 562075.1, "northing": 4800009.7, "time": "11:48:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76645, 43.350637]}, "properties": {"category": "real_shot", "line": "0967", "easting": 562115.8, "northing": 4800038.9, "time": "11:49:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766951, 43.3509]}, "properties": {"category": "real_shot", "line": "0967", "easting": 562156.1, "northing": 4800068.4, "time": "11:49:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76743, 43.350377]}, "properties": {"category": "real_shot", "line": "0969", "easting": 562195.5, "northing": 4800010.7, "time": "10:11:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766935, 43.350116]}, "properties": {"category": "real_shot", "line": "0969", "easting": 562155.6, "northing": 4799981.3, "time": "10:12:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766375, 43.349927]}, "properties": {"category": "real_shot", "line": "0969", "easting": 562110.4, "northing": 4799959.9, "time": "10:12:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765714, 43.349842]}, "properties": {"category": "real_shot", "line": "0969", "easting": 562056.9, "northing": 4799950.0, "time": "10:12:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764853, 43.34992]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561987.1, "northing": 4799958.0, "time": "10:13:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764303, 43.349717]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561942.7, "northing": 4799935.1, "time": "10:13:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763949, 43.349314]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561914.4, "northing": 4799890.1, "time": "10:13:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763575, 43.348913]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561884.5, "northing": 4799845.3, "time": "10:14:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763181, 43.34854]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561853.0, "northing": 4799803.5, "time": "10:14:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762767, 43.348183]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561819.8, "northing": 4799763.6, "time": "10:14:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762308, 43.347878]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561782.9, "northing": 4799729.4, "time": "10:15:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761814, 43.34761]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561743.1, "northing": 4799699.2, "time": "10:15:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761331, 43.347325]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561704.3, "northing": 4799667.2, "time": "10:15:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760828, 43.347065]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561663.8, "northing": 4799638.0, "time": "10:16:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76033, 43.3468]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561623.7, "northing": 4799608.2, "time": "10:16:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759809, 43.346559]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561581.7, "northing": 4799581.0, "time": "10:16:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759261, 43.346347]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561537.5, "northing": 4799557.1, "time": "10:16:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758729, 43.346115]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561494.6, "northing": 4799530.9, "time": "10:17:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758213, 43.34587]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561453.0, "northing": 4799503.3, "time": "10:17:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757705, 43.345617]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561412.1, "northing": 4799474.9, "time": "10:17:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757196, 43.345367]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561371.1, "northing": 4799446.7, "time": "10:18:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756689, 43.345109]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561330.3, "northing": 4799417.7, "time": "10:18:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756179, 43.344851]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561289.2, "northing": 4799388.7, "time": "10:18:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755674, 43.34459]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561248.5, "northing": 4799359.3, "time": "10:19:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755167, 43.344335]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561207.7, "northing": 4799330.6, "time": "10:19:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754659, 43.344079]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561166.8, "northing": 4799301.8, "time": "10:19:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754132, 43.343844]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561124.3, "northing": 4799275.3, "time": "10:20:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753613, 43.343598]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561082.5, "northing": 4799247.7, "time": "10:20:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753096, 43.343353]}, "properties": {"category": "real_shot", "line": "0969", "easting": 561040.8, "northing": 4799220.1, "time": "10:20:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752571, 43.343118]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560998.5, "northing": 4799193.6, "time": "10:21:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75206, 43.342866]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560957.3, "northing": 4799165.2, "time": "10:21:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75154, 43.342621]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560915.4, "northing": 4799137.6, "time": "10:21:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751042, 43.342355]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560875.3, "northing": 4799107.7, "time": "10:22:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750558, 43.342074]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560836.4, "northing": 4799076.2, "time": "10:22:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750071, 43.341796]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560797.2, "northing": 4799044.9, "time": "10:23:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74959, 43.341514]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560758.5, "northing": 4799013.3, "time": "10:23:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749078, 43.341263]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560717.2, "northing": 4798985.0, "time": "10:23:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748557, 43.341021]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560675.2, "northing": 4798957.8, "time": "10:24:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748021, 43.340796]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560632.0, "northing": 4798932.4, "time": "10:24:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747489, 43.340566]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560589.1, "northing": 4798906.5, "time": "10:24:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746955, 43.340332]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560546.1, "northing": 4798880.1, "time": "10:25:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746468, 43.340058]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560506.9, "northing": 4798849.3, "time": "10:25:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745984, 43.339779]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560467.9, "northing": 4798818.0, "time": "10:25:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745487, 43.339512]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560427.9, "northing": 4798788.0, "time": "10:26:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744972, 43.339263]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560386.4, "northing": 4798759.9, "time": "10:26:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744458, 43.339017]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560345.0, "northing": 4798732.2, "time": "10:26:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743935, 43.338776]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560302.8, "northing": 4798705.1, "time": "10:27:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743416, 43.338531]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560261.0, "northing": 4798677.5, "time": "10:27:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742895, 43.338291]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560219.0, "northing": 4798650.5, "time": "10:27:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742384, 43.338036]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560177.8, "northing": 4798621.8, "time": "10:28:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741892, 43.337767]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560138.2, "northing": 4798591.6, "time": "10:28:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741398, 43.337497]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560098.4, "northing": 4798561.2, "time": "10:28:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740883, 43.337248]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560056.9, "northing": 4798533.2, "time": "10:29:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740388, 43.336977]}, "properties": {"category": "real_shot", "line": "0969", "easting": 560017.1, "northing": 4798502.8, "time": "10:29:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73989, 43.336713]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559977.0, "northing": 4798473.1, "time": "10:29:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739384, 43.336455]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559936.2, "northing": 4798444.1, "time": "10:30:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738884, 43.336192]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559895.9, "northing": 4798414.5, "time": "10:30:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738371, 43.33594]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559854.6, "northing": 4798386.2, "time": "10:31:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737877, 43.335671]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559814.8, "northing": 4798355.9, "time": "10:31:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737378, 43.335407]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559774.6, "northing": 4798326.2, "time": "10:31:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736854, 43.335167]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559732.4, "northing": 4798299.2, "time": "10:32:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736325, 43.334935]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559689.7, "northing": 4798273.1, "time": "10:32:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735776, 43.334722]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559645.4, "northing": 4798249.0, "time": "10:32:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735235, 43.334502]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559601.8, "northing": 4798224.2, "time": "10:33:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734739, 43.334234]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559561.8, "northing": 4798194.1, "time": "10:33:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734291, 43.333916]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559525.8, "northing": 4798158.4, "time": "10:33:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733828, 43.333614]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559488.6, "northing": 4798124.6, "time": "10:34:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73331, 43.333367]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559446.8, "northing": 4798096.8, "time": "10:34:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732802, 43.333116]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559405.9, "northing": 4798068.5, "time": "10:34:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732275, 43.332879]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559363.4, "northing": 4798041.8, "time": "10:35:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731751, 43.332636]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559321.2, "northing": 4798014.5, "time": "10:35:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731252, 43.332375]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559281.0, "northing": 4797985.1, "time": "10:35:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730751, 43.332113]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559240.6, "northing": 4797955.7, "time": "10:36:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730234, 43.331866]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559198.9, "northing": 4797927.9, "time": "10:36:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729728, 43.331608]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559158.2, "northing": 4797898.9, "time": "10:37:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72922, 43.331353]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559117.2, "northing": 4797870.2, "time": "10:37:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728711, 43.331099]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559076.2, "northing": 4797841.6, "time": "10:37:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728203, 43.330844]}, "properties": {"category": "real_shot", "line": "0969", "easting": 559035.3, "northing": 4797813.0, "time": "10:38:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727691, 43.330591]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558994.0, "northing": 4797784.5, "time": "10:38:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727178, 43.330342]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558952.7, "northing": 4797756.5, "time": "10:38:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726668, 43.330089]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558911.6, "northing": 4797728.0, "time": "10:39:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726157, 43.329836]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558870.4, "northing": 4797699.6, "time": "10:39:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725647, 43.329584]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558829.3, "northing": 4797671.2, "time": "10:39:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725132, 43.329336]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558787.8, "northing": 4797643.3, "time": "10:40:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724613, 43.329095]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558745.9, "northing": 4797616.2, "time": "10:40:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724105, 43.328838]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558705.0, "northing": 4797587.3, "time": "10:40:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723598, 43.32858]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558664.1, "northing": 4797558.3, "time": "10:41:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723104, 43.328312]}, "properties": {"category": "real_shot", "line": "0969", "easting": 558624.3, "northing": 4797528.2, "time": "10:41:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767694, 43.350108]}, "properties": {"category": "real_shot", "line": "0971", "easting": 562217.1, "northing": 4799981.0, "time": "10:56:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767183, 43.349857]}, "properties": {"category": "real_shot", "line": "0971", "easting": 562176.0, "northing": 4799952.8, "time": "10:56:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766664, 43.349613]}, "properties": {"category": "real_shot", "line": "0971", "easting": 562134.2, "northing": 4799925.3, "time": "10:56:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766142, 43.349373]}, "properties": {"category": "real_shot", "line": "0971", "easting": 562092.1, "northing": 4799898.2, "time": "10:57:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765649, 43.349103]}, "properties": {"category": "real_shot", "line": "0971", "easting": 562052.4, "northing": 4799867.9, "time": "10:57:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765147, 43.348838]}, "properties": {"category": "real_shot", "line": "0971", "easting": 562012.0, "northing": 4799838.1, "time": "10:57:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764637, 43.348586]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561970.9, "northing": 4799809.7, "time": "10:58:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764114, 43.348347]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561928.8, "northing": 4799782.8, "time": "10:58:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763611, 43.348087]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561888.3, "northing": 4799753.5, "time": "10:58:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763118, 43.347813]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561848.6, "northing": 4799722.8, "time": "10:58:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762621, 43.347547]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561808.6, "northing": 4799692.8, "time": "10:59:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762112, 43.347293]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561767.6, "northing": 4799664.3, "time": "10:59:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761594, 43.347049]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561725.9, "northing": 4799636.8, "time": "10:59:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761066, 43.346816]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561683.3, "northing": 4799610.5, "time": "11:00:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760556, 43.346561]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561642.2, "northing": 4799581.8, "time": "11:00:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76006, 43.346292]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561602.3, "northing": 4799551.6, "time": "11:00:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759559, 43.34603]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561562.0, "northing": 4799522.1, "time": "11:00:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759049, 43.345776]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561520.9, "northing": 4799493.5, "time": "11:01:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75853, 43.345532]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561479.1, "northing": 4799466.0, "time": "11:01:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758014, 43.345287]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561437.5, "northing": 4799438.4, "time": "11:01:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757519, 43.345019]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561397.6, "northing": 4799408.3, "time": "11:02:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757019, 43.344753]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561357.4, "northing": 4799378.4, "time": "11:02:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756509, 43.344499]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561316.3, "northing": 4799349.8, "time": "11:02:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755989, 43.344257]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561274.4, "northing": 4799322.6, "time": "11:03:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755484, 43.343999]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561233.7, "northing": 4799293.6, "time": "11:03:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754986, 43.343731]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561193.6, "northing": 4799263.4, "time": "11:03:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754482, 43.343473]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561153.0, "northing": 4799234.4, "time": "11:03:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753974, 43.343219]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561112.1, "northing": 4799205.8, "time": "11:04:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753455, 43.342974]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561070.3, "northing": 4799178.2, "time": "11:04:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752925, 43.342743]}, "properties": {"category": "real_shot", "line": "0971", "easting": 561027.6, "northing": 4799152.2, "time": "11:04:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75242, 43.342483]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560986.9, "northing": 4799123.0, "time": "11:05:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751922, 43.342217]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560946.8, "northing": 4799093.0, "time": "11:05:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751414, 43.341961]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560905.9, "northing": 4799064.3, "time": "11:05:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750887, 43.341726]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560863.4, "northing": 4799037.8, "time": "11:05:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750379, 43.34147]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560822.5, "northing": 4799009.0, "time": "11:06:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749878, 43.341209]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560782.1, "northing": 4798979.6, "time": "11:06:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749367, 43.340955]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560741.0, "northing": 4798951.0, "time": "11:06:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748854, 43.340705]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560699.6, "northing": 4798922.9, "time": "11:07:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748334, 43.340464]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560657.7, "northing": 4798895.7, "time": "11:07:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747808, 43.340228]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560615.3, "northing": 4798869.2, "time": "11:07:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74731, 43.339961]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560575.2, "northing": 4798839.2, "time": "11:08:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746813, 43.339694]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560535.2, "northing": 4798809.1, "time": "11:08:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74631, 43.339433]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560494.7, "northing": 4798779.8, "time": "11:08:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745806, 43.339173]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560454.1, "northing": 4798750.5, "time": "11:08:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745303, 43.338912]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560413.6, "northing": 4798721.2, "time": "11:09:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744799, 43.338652]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560373.0, "northing": 4798692.0, "time": "11:09:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744292, 43.338398]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560332.1, "northing": 4798663.4, "time": "11:09:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74378, 43.338147]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560290.9, "northing": 4798635.1, "time": "11:10:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743268, 43.337895]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560249.6, "northing": 4798606.8, "time": "11:10:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742755, 43.337645]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560208.3, "northing": 4798578.7, "time": "11:10:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742241, 43.337395]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560166.9, "northing": 4798550.5, "time": "11:10:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741723, 43.337152]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560125.1, "northing": 4798523.2, "time": "11:11:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741226, 43.336885]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560085.1, "northing": 4798493.2, "time": "11:11:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740735, 43.336609]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560045.6, "northing": 4798462.1, "time": "11:11:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740225, 43.336357]}, "properties": {"category": "real_shot", "line": "0971", "easting": 560004.5, "northing": 4798433.8, "time": "11:12:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739719, 43.3361]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559963.7, "northing": 4798404.9, "time": "11:12:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739221, 43.335834]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559923.6, "northing": 4798375.0, "time": "11:12:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738712, 43.335581]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559882.6, "northing": 4798346.5, "time": "11:13:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738191, 43.335339]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559840.6, "northing": 4798319.3, "time": "11:13:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737697, 43.335069]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559800.8, "northing": 4798288.9, "time": "11:13:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737194, 43.334806]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559760.3, "northing": 4798259.4, "time": "11:13:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736682, 43.334557]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559719.0, "northing": 4798231.4, "time": "11:14:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736161, 43.334316]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559677.0, "northing": 4798204.2, "time": "11:14:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735662, 43.33405]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559636.8, "northing": 4798174.3, "time": "11:14:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735171, 43.333777]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559597.3, "northing": 4798143.6, "time": "11:15:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734659, 43.333526]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559556.0, "northing": 4798115.4, "time": "11:15:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734162, 43.333259]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559516.0, "northing": 4798085.4, "time": "11:15:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733657, 43.333]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559475.3, "northing": 4798056.3, "time": "11:15:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733142, 43.332753]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559433.8, "northing": 4798028.5, "time": "11:16:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732617, 43.332516]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559391.5, "northing": 4798001.8, "time": "11:16:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732116, 43.332252]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559351.1, "northing": 4797972.1, "time": "11:16:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73162, 43.331983]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559311.2, "northing": 4797941.9, "time": "11:17:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731113, 43.331729]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559270.3, "northing": 4797913.3, "time": "11:17:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730594, 43.331484]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559228.5, "northing": 4797885.7, "time": "11:17:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730068, 43.33125]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559186.1, "northing": 4797859.4, "time": "11:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729562, 43.330991]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559145.3, "northing": 4797830.2, "time": "11:18:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729063, 43.330724]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559105.1, "northing": 4797800.2, "time": "11:18:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728557, 43.330468]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559064.3, "northing": 4797771.5, "time": "11:18:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728044, 43.330219]}, "properties": {"category": "real_shot", "line": "0971", "easting": 559023.0, "northing": 4797743.4, "time": "11:19:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727526, 43.329974]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558981.2, "northing": 4797715.9, "time": "11:19:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727007, 43.32973]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558939.4, "northing": 4797688.4, "time": "11:19:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726512, 43.329462]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558899.5, "northing": 4797658.3, "time": "11:20:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726005, 43.329203]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558858.7, "northing": 4797629.2, "time": "11:20:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725491, 43.328955]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558817.2, "northing": 4797601.3, "time": "11:20:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724967, 43.328717]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558775.0, "northing": 4797574.5, "time": "11:21:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724468, 43.328453]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558734.8, "northing": 4797544.8, "time": "11:21:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723969, 43.328188]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558694.6, "northing": 4797515.0, "time": "11:21:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723461, 43.327934]}, "properties": {"category": "real_shot", "line": "0971", "easting": 558653.6, "northing": 4797486.5, "time": "11:21:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.723871, 43.327502]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558687.3, "northing": 4797438.8, "time": "10:44:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724441, 43.32769]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558733.3, "northing": 4797460.0, "time": "10:44:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724955, 43.327934]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558774.8, "northing": 4797487.5, "time": "10:44:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725442, 43.328211]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558814.0, "northing": 4797518.6, "time": "10:45:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725908, 43.328512]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558851.5, "northing": 4797552.4, "time": "10:45:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726431, 43.328754]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558893.6, "northing": 4797579.6, "time": "10:46:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726965, 43.328981]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558936.7, "northing": 4797605.2, "time": "10:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727446, 43.329263]}, "properties": {"category": "real_shot", "line": "0973", "easting": 558975.4, "northing": 4797636.9, "time": "10:46:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727944, 43.329538]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559015.5, "northing": 4797667.8, "time": "10:47:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728427, 43.329815]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559054.4, "northing": 4797698.8, "time": "10:47:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728927, 43.330081]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559094.7, "northing": 4797728.7, "time": "10:48:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729432, 43.330342]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559135.4, "northing": 4797758.1, "time": "10:48:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729933, 43.330597]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559175.8, "northing": 4797786.8, "time": "10:48:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730453, 43.33084]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559217.7, "northing": 4797814.1, "time": "10:49:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73094, 43.331116]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559256.9, "northing": 4797845.1, "time": "10:49:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731422, 43.331401]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559295.7, "northing": 4797877.1, "time": "10:49:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731919, 43.331669]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559335.7, "northing": 4797907.2, "time": "10:50:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732429, 43.33192]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559376.8, "northing": 4797935.5, "time": "10:50:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732935, 43.332178]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559417.6, "northing": 4797964.5, "time": "10:50:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733456, 43.332419]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559459.6, "northing": 4797991.6, "time": "10:51:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733998, 43.33264]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559503.3, "northing": 4798016.5, "time": "10:51:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73451, 43.332889]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559544.6, "northing": 4798044.6, "time": "10:51:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735036, 43.333126]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559587.0, "northing": 4798071.2, "time": "10:52:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735541, 43.333384]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559627.7, "northing": 4798100.3, "time": "10:52:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73604, 43.333649]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559667.9, "northing": 4798130.0, "time": "10:52:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736535, 43.333919]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559707.7, "northing": 4798160.4, "time": "10:53:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737051, 43.334165]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559749.3, "northing": 4798188.1, "time": "10:53:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737546, 43.334435]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559789.2, "northing": 4798218.4, "time": "10:53:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738055, 43.33469]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559830.2, "northing": 4798247.1, "time": "10:54:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73858, 43.334926]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559872.5, "northing": 4798273.7, "time": "10:54:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739103, 43.335163]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559914.7, "northing": 4798300.4, "time": "10:54:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739597, 43.335436]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559954.5, "northing": 4798331.0, "time": "10:55:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740099, 43.335698]}, "properties": {"category": "real_shot", "line": "0973", "easting": 559994.9, "northing": 4798360.5, "time": "10:55:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740605, 43.335954]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560035.7, "northing": 4798389.3, "time": "10:55:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741122, 43.3362]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560077.3, "northing": 4798417.0, "time": "10:56:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741605, 43.336481]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560116.2, "northing": 4798448.6, "time": "10:56:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742088, 43.336765]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560155.1, "northing": 4798480.4, "time": "10:57:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742579, 43.337039]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560194.6, "northing": 4798511.2, "time": "10:57:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743077, 43.337304]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560234.7, "northing": 4798541.0, "time": "10:57:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74359, 43.337554]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560276.1, "northing": 4798569.2, "time": "10:58:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744109, 43.337795]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560317.9, "northing": 4798596.3, "time": "10:58:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744616, 43.338054]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560358.7, "northing": 4798625.4, "time": "10:58:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745116, 43.338318]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560399.0, "northing": 4798655.1, "time": "10:59:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745622, 43.338575]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560439.8, "northing": 4798684.0, "time": "10:59:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746148, 43.33881]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560482.2, "northing": 4798710.5, "time": "10:59:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746649, 43.339073]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560522.5, "northing": 4798740.0, "time": "11:00:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747147, 43.33934]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560562.6, "northing": 4798770.1, "time": "11:00:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747655, 43.339599]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560603.5, "northing": 4798799.2, "time": "11:00:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748169, 43.339844]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560645.0, "northing": 4798826.8, "time": "11:01:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748687, 43.340089]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560686.7, "northing": 4798854.4, "time": "11:01:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749214, 43.340324]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560729.2, "northing": 4798880.8, "time": "11:01:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749711, 43.34059]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560769.2, "northing": 4798910.8, "time": "11:02:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750227, 43.340839]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560810.8, "northing": 4798938.8, "time": "11:02:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750735, 43.341093]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560851.7, "northing": 4798967.4, "time": "11:02:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751251, 43.34134]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560893.3, "northing": 4798995.2, "time": "11:03:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751775, 43.341578]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560935.5, "northing": 4799022.0, "time": "11:03:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752272, 43.341846]}, "properties": {"category": "real_shot", "line": "0973", "easting": 560975.5, "northing": 4799052.1, "time": "11:04:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752793, 43.342089]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561017.5, "northing": 4799079.5, "time": "11:04:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753299, 43.342343]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561058.3, "northing": 4799108.1, "time": "11:04:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7538, 43.342609]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561098.6, "northing": 4799137.9, "time": "11:05:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754307, 43.342865]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561139.5, "northing": 4799166.8, "time": "11:05:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754809, 43.343126]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561179.9, "northing": 4799196.1, "time": "11:05:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755312, 43.343387]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561220.4, "northing": 4799225.5, "time": "11:06:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755817, 43.343645]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561261.1, "northing": 4799254.5, "time": "11:06:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756336, 43.34389]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561302.9, "northing": 4799282.1, "time": "11:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756856, 43.344131]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561344.8, "northing": 4799309.2, "time": "11:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757354, 43.344399]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561384.9, "northing": 4799339.4, "time": "11:07:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757867, 43.344646]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561426.2, "northing": 4799367.2, "time": "11:07:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758367, 43.344911]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561466.5, "northing": 4799397.0, "time": "11:08:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758863, 43.34518]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561506.4, "northing": 4799427.2, "time": "11:08:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75936, 43.345447]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561546.4, "northing": 4799457.2, "time": "11:08:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759861, 43.34571]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561586.8, "northing": 4799486.8, "time": "11:09:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76037, 43.345963]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561627.8, "northing": 4799515.3, "time": "11:09:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760887, 43.346211]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561669.4, "northing": 4799543.2, "time": "11:10:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761401, 43.346459]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561710.8, "northing": 4799571.1, "time": "11:10:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761926, 43.346696]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561753.1, "northing": 4799597.8, "time": "11:10:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762431, 43.346955]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561793.8, "northing": 4799626.9, "time": "11:11:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762944, 43.347207]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561835.1, "northing": 4799655.3, "time": "11:11:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763456, 43.347456]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561876.4, "northing": 4799683.3, "time": "11:11:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763951, 43.347726]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561916.2, "northing": 4799713.7, "time": "11:12:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764453, 43.347989]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561956.6, "northing": 4799743.3, "time": "11:12:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764971, 43.348231]}, "properties": {"category": "real_shot", "line": "0973", "easting": 561998.4, "northing": 4799770.5, "time": "11:12:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765474, 43.348492]}, "properties": {"category": "real_shot", "line": "0973", "easting": 562038.9, "northing": 4799799.9, "time": "11:13:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765979, 43.348752]}, "properties": {"category": "real_shot", "line": "0973", "easting": 562079.5, "northing": 4799829.1, "time": "11:13:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766494, 43.349]}, "properties": {"category": "real_shot", "line": "0973", "easting": 562121.0, "northing": 4799857.1, "time": "11:13:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767013, 43.349243]}, "properties": {"category": "real_shot", "line": "0973", "easting": 562162.8, "northing": 4799884.5, "time": "11:14:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767541, 43.349477]}, "properties": {"category": "real_shot", "line": "0973", "easting": 562205.4, "northing": 4799910.8, "time": "11:14:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768049, 43.349731]}, "properties": {"category": "real_shot", "line": "0973", "easting": 562246.3, "northing": 4799939.4, "time": "11:14:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724096, 43.327262]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558705.8, "northing": 4797412.3, "time": "10:28:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724572, 43.32755]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558744.1, "northing": 4797444.6, "time": "10:28:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72507, 43.327813]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558784.2, "northing": 4797474.2, "time": "10:29:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72562, 43.328025]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558828.6, "northing": 4797498.1, "time": "10:29:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726175, 43.32823]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558873.4, "northing": 4797521.2, "time": "10:29:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726689, 43.328481]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558914.8, "northing": 4797549.5, "time": "10:29:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727176, 43.328757]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558954.0, "northing": 4797580.5, "time": "10:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727661, 43.329036]}, "properties": {"category": "real_shot", "line": "0975", "easting": 558993.1, "northing": 4797611.8, "time": "10:30:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728159, 43.329304]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559033.2, "northing": 4797641.9, "time": "10:30:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728673, 43.329554]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559074.6, "northing": 4797670.0, "time": "10:31:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729209, 43.329776]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559117.9, "northing": 4797695.1, "time": "10:31:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729729, 43.330018]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559159.8, "northing": 4797722.3, "time": "10:31:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73024, 43.330272]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559201.0, "northing": 4797750.9, "time": "10:31:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730741, 43.330535]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559241.3, "northing": 4797780.4, "time": "10:32:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731249, 43.330791]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559282.3, "northing": 4797809.2, "time": "10:32:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731768, 43.331034]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559324.1, "northing": 4797836.6, "time": "10:32:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732297, 43.331264]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559366.8, "northing": 4797862.5, "time": "10:33:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732805, 43.331521]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559407.7, "northing": 4797891.4, "time": "10:33:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73331, 43.33178]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559448.4, "northing": 4797920.5, "time": "10:33:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733825, 43.332028]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559489.9, "northing": 4797948.4, "time": "10:33:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734349, 43.332266]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559532.1, "northing": 4797975.3, "time": "10:34:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734861, 43.332518]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559573.4, "northing": 4798003.6, "time": "10:34:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735358, 43.332784]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559613.4, "northing": 4798033.5, "time": "10:34:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735851, 43.333055]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559653.1, "northing": 4798064.0, "time": "10:35:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736346, 43.333325]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559693.0, "northing": 4798094.3, "time": "10:35:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736845, 43.333589]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559733.2, "northing": 4798124.0, "time": "10:35:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737352, 43.333846]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559774.0, "northing": 4798152.9, "time": "10:35:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737865, 43.334096]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559815.4, "northing": 4798181.0, "time": "10:36:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738384, 43.334339]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559857.2, "northing": 4798208.4, "time": "10:36:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738901, 43.334585]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559898.9, "northing": 4798236.1, "time": "10:36:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739395, 43.334855]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559938.7, "northing": 4798266.4, "time": "10:37:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739902, 43.335113]}, "properties": {"category": "real_shot", "line": "0975", "easting": 559979.5, "northing": 4798295.4, "time": "10:37:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740417, 43.335359]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560021.0, "northing": 4798323.1, "time": "10:37:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74094, 43.335599]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560063.2, "northing": 4798350.1, "time": "10:37:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741441, 43.335864]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560103.5, "northing": 4798379.9, "time": "10:38:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741947, 43.33612]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560144.3, "northing": 4798408.7, "time": "10:38:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742461, 43.336367]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560185.7, "northing": 4798436.5, "time": "10:38:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742986, 43.336606]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560228.0, "northing": 4798463.4, "time": "10:39:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74349, 43.336866]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560268.6, "northing": 4798492.7, "time": "10:39:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743989, 43.337131]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560308.8, "northing": 4798522.5, "time": "10:39:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744498, 43.337387]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560349.8, "northing": 4798551.2, "time": "10:39:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745014, 43.33763]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560391.4, "northing": 4798578.6, "time": "10:40:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745534, 43.337872]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560433.3, "northing": 4798605.9, "time": "10:40:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746037, 43.338136]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560473.8, "northing": 4798635.6, "time": "10:40:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746536, 43.338402]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560514.0, "northing": 4798665.4, "time": "10:41:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747035, 43.338664]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560554.2, "northing": 4798694.9, "time": "10:41:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747544, 43.33892]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560595.2, "northing": 4798723.7, "time": "10:41:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748053, 43.339173]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560636.2, "northing": 4798752.2, "time": "10:41:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748562, 43.339427]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560677.2, "northing": 4798780.7, "time": "10:42:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749074, 43.339679]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560718.5, "northing": 4798809.1, "time": "10:42:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749595, 43.339919]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560760.5, "northing": 4798836.2, "time": "10:42:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750101, 43.340177]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560801.2, "northing": 4798865.2, "time": "10:43:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750596, 43.340445]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560841.1, "northing": 4798895.3, "time": "10:43:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751092, 43.340715]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560881.0, "northing": 4798925.6, "time": "10:43:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75159, 43.340983]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560921.1, "northing": 4798955.8, "time": "10:43:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752097, 43.341238]}, "properties": {"category": "real_shot", "line": "0975", "easting": 560962.0, "northing": 4798984.4, "time": "10:44:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752616, 43.34148]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561003.8, "northing": 4799011.7, "time": "10:44:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753113, 43.341748]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561043.8, "northing": 4799041.8, "time": "10:44:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753613, 43.342013]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561084.1, "northing": 4799071.6, "time": "10:45:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754126, 43.342262]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561125.4, "northing": 4799099.7, "time": "10:45:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754648, 43.342502]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561167.5, "northing": 4799126.7, "time": "10:45:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755145, 43.342768]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561207.5, "northing": 4799156.6, "time": "10:45:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755641, 43.343038]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561247.4, "northing": 4799187.0, "time": "10:46:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756139, 43.343304]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561287.5, "northing": 4799216.8, "time": "10:46:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756648, 43.343559]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561328.5, "northing": 4799245.5, "time": "10:46:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757167, 43.343803]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561370.3, "northing": 4799273.0, "time": "10:47:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757682, 43.34405]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561411.8, "northing": 4799300.8, "time": "10:47:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75818, 43.344317]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561451.9, "northing": 4799330.8, "time": "10:47:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75868, 43.344581]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561492.2, "northing": 4799360.5, "time": "10:47:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759187, 43.344837]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561533.0, "northing": 4799389.3, "time": "10:48:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759699, 43.345086]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561574.3, "northing": 4799417.4, "time": "10:48:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760222, 43.345327]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561616.4, "northing": 4799444.5, "time": "10:48:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760725, 43.345587]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561656.9, "northing": 4799473.8, "time": "10:49:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761227, 43.34585]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561697.3, "northing": 4799503.4, "time": "10:49:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761734, 43.346106]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561738.2, "northing": 4799532.1, "time": "10:49:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762248, 43.346356]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561779.6, "northing": 4799560.3, "time": "10:49:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762761, 43.346605]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561820.9, "northing": 4799588.3, "time": "10:50:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763283, 43.346845]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561863.0, "northing": 4799615.4, "time": "10:50:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763805, 43.347086]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561905.0, "northing": 4799642.5, "time": "10:50:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764322, 43.347333]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561946.7, "northing": 4799670.3, "time": "10:51:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764819, 43.3476]}, "properties": {"category": "real_shot", "line": "0975", "easting": 561986.7, "northing": 4799700.4, "time": "10:51:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765323, 43.347859]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562027.3, "northing": 4799729.5, "time": "10:51:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765837, 43.348108]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562068.7, "northing": 4799757.5, "time": "10:51:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76636, 43.348348]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562110.8, "northing": 4799784.6, "time": "10:52:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766864, 43.348608]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562151.4, "northing": 4799813.8, "time": "10:52:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767363, 43.348871]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562191.6, "northing": 4799843.4, "time": "10:52:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767871, 43.349128]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562232.5, "northing": 4799872.3, "time": "10:53:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768392, 43.349368]}, "properties": {"category": "real_shot", "line": "0975", "easting": 562274.5, "northing": 4799899.4, "time": "10:53:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768671, 43.349068]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562297.4, "northing": 4799866.3, "time": "11:18:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768206, 43.348769]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562260.0, "northing": 4799832.7, "time": "11:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767718, 43.348492]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562220.7, "northing": 4799801.6, "time": "11:18:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767204, 43.348244]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562179.3, "northing": 4799773.6, "time": "11:18:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766679, 43.348006]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562137.0, "northing": 4799746.8, "time": "11:19:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766164, 43.347759]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562095.5, "northing": 4799719.0, "time": "11:19:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765657, 43.347502]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562054.7, "northing": 4799690.1, "time": "11:19:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765159, 43.347237]}, "properties": {"category": "real_shot", "line": "0977", "easting": 562014.6, "northing": 4799660.3, "time": "11:20:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764651, 43.34699]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561973.7, "northing": 4799632.5, "time": "11:20:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764141, 43.346729]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561932.6, "northing": 4799603.1, "time": "11:20:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763648, 43.346458]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561892.9, "northing": 4799572.7, "time": "11:21:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763149, 43.346195]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561852.8, "northing": 4799543.1, "time": "11:21:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762648, 43.345927]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561812.4, "northing": 4799513.0, "time": "11:21:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762158, 43.345652]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561773.0, "northing": 4799482.1, "time": "11:22:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761661, 43.345387]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561733.0, "northing": 4799452.2, "time": "11:22:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761127, 43.34516]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561689.9, "northing": 4799426.6, "time": "11:22:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760605, 43.344915]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561647.9, "northing": 4799399.1, "time": "11:23:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760078, 43.344686]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561605.4, "northing": 4799373.2, "time": "11:23:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759563, 43.344433]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561563.9, "northing": 4799344.8, "time": "11:23:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759063, 43.344173]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561523.6, "northing": 4799315.5, "time": "11:24:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758573, 43.343897]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561484.2, "northing": 4799284.5, "time": "11:24:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758072, 43.343631]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561443.9, "northing": 4799254.6, "time": "11:24:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757584, 43.343356]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561404.6, "northing": 4799223.7, "time": "11:25:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757097, 43.343083]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561365.4, "northing": 4799193.0, "time": "11:25:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756571, 43.342846]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561323.0, "northing": 4799166.3, "time": "11:25:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756054, 43.342594]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561281.3, "northing": 4799137.9, "time": "11:26:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755542, 43.342348]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561240.1, "northing": 4799110.2, "time": "11:26:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755003, 43.342121]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561196.6, "northing": 4799084.6, "time": "11:26:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754485, 43.341878]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561154.9, "northing": 4799057.3, "time": "11:27:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753967, 43.341639]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561113.1, "northing": 4799030.3, "time": "11:27:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753454, 43.341382]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561071.8, "northing": 4799001.4, "time": "11:27:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752962, 43.34111]}, "properties": {"category": "real_shot", "line": "0977", "easting": 561032.2, "northing": 4798970.9, "time": "11:28:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752463, 43.340851]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560992.0, "northing": 4798941.7, "time": "11:28:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751955, 43.34059]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560951.1, "northing": 4798912.4, "time": "11:28:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751461, 43.340321]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560911.3, "northing": 4798882.1, "time": "11:29:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750963, 43.340056]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560871.2, "northing": 4798852.3, "time": "11:29:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750442, 43.339819]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560829.2, "northing": 4798825.6, "time": "11:29:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749907, 43.339585]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560786.1, "northing": 4798799.3, "time": "11:30:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749383, 43.339345]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560743.9, "northing": 4798772.2, "time": "11:30:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748903, 43.339063]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560705.2, "northing": 4798740.6, "time": "11:30:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748394, 43.33881]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560664.2, "northing": 4798712.1, "time": "11:31:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747907, 43.338529]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560625.0, "northing": 4798680.6, "time": "11:31:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747392, 43.338284]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560583.5, "northing": 4798653.0, "time": "11:31:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746861, 43.338055]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560540.7, "northing": 4798627.1, "time": "11:32:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746329, 43.337822]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560497.8, "northing": 4798600.9, "time": "11:32:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745821, 43.337565]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560456.9, "northing": 4798572.0, "time": "11:32:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745345, 43.337277]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560418.6, "northing": 4798539.6, "time": "11:33:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744847, 43.337012]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560378.5, "northing": 4798509.9, "time": "11:33:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744342, 43.336755]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560337.8, "northing": 4798481.0, "time": "11:33:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743848, 43.336483]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560298.0, "northing": 4798450.4, "time": "11:34:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743329, 43.336242]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560256.2, "northing": 4798423.3, "time": "11:34:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742809, 43.335998]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560214.3, "northing": 4798395.8, "time": "11:34:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7423, 43.33574]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560173.3, "northing": 4798366.8, "time": "11:35:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741797, 43.335482]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560132.8, "northing": 4798337.7, "time": "11:35:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741278, 43.335242]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560090.9, "northing": 4798310.7, "time": "11:35:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74076, 43.334991]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560049.2, "northing": 4798282.5, "time": "11:36:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740249, 43.334742]}, "properties": {"category": "real_shot", "line": "0977", "easting": 560008.0, "northing": 4798254.4, "time": "11:36:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739736, 43.334491]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559966.7, "northing": 4798226.2, "time": "11:36:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739236, 43.334229]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559926.4, "northing": 4798196.7, "time": "11:37:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738736, 43.333965]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559886.1, "northing": 4798167.1, "time": "11:37:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738233, 43.333702]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559845.6, "northing": 4798137.5, "time": "11:37:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73773, 43.333443]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559805.1, "northing": 4798108.4, "time": "11:37:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73722, 43.333191]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559764.0, "northing": 4798080.0, "time": "11:38:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736714, 43.332935]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559723.2, "northing": 4798051.2, "time": "11:38:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736201, 43.332685]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559681.9, "northing": 4798023.1, "time": "11:38:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73568, 43.332437]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559639.9, "northing": 4797995.2, "time": "11:39:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735164, 43.332192]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559598.3, "northing": 4797967.6, "time": "11:39:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734649, 43.331947]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559556.8, "northing": 4797940.0, "time": "11:39:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734155, 43.331676]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559517.0, "northing": 4797909.6, "time": "11:40:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73365, 43.331417]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559476.3, "northing": 4797880.5, "time": "11:40:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733159, 43.331143]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559436.8, "northing": 4797849.7, "time": "11:40:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732664, 43.330875]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559396.9, "northing": 4797819.6, "time": "11:41:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732143, 43.330634]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559354.9, "northing": 4797792.4, "time": "11:41:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731638, 43.330377]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559314.2, "northing": 4797763.5, "time": "11:41:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731122, 43.330129]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559272.6, "northing": 4797735.6, "time": "11:42:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730596, 43.32989]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559230.2, "northing": 4797708.7, "time": "11:42:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730088, 43.329639]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559189.3, "northing": 4797680.5, "time": "11:43:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729561, 43.329399]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559146.8, "northing": 4797653.5, "time": "11:43:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729049, 43.329151]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559105.5, "northing": 4797625.5, "time": "11:43:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72854, 43.328895]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559064.5, "northing": 4797596.8, "time": "11:44:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728031, 43.328641]}, "properties": {"category": "real_shot", "line": "0977", "easting": 559023.5, "northing": 4797568.2, "time": "11:44:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727529, 43.32838]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558983.0, "northing": 4797538.8, "time": "11:44:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72703, 43.328117]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558942.8, "northing": 4797509.3, "time": "11:45:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726525, 43.327858]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558902.1, "northing": 4797480.2, "time": "11:45:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726015, 43.327605]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558861.0, "northing": 4797451.7, "time": "11:45:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725507, 43.32735]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558820.1, "northing": 4797423.0, "time": "11:46:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725009, 43.32708]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558780.0, "northing": 4797392.7, "time": "11:46:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724514, 43.326815]}, "properties": {"category": "real_shot", "line": "0977", "easting": 558740.1, "northing": 4797362.9, "time": "11:46:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769028, 43.348669]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562326.7, "northing": 4799822.2, "time": "10:00:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768536, 43.348412]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562287.1, "northing": 4799793.3, "time": "10:00:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768028, 43.34816]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562246.2, "northing": 4799764.9, "time": "10:01:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767553, 43.347871]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562208.0, "northing": 4799732.5, "time": "10:01:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767048, 43.347612]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562167.3, "northing": 4799703.4, "time": "10:01:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766512, 43.34739]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562124.1, "northing": 4799678.3, "time": "10:01:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765983, 43.347155]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562081.5, "northing": 4799651.8, "time": "10:02:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76548, 43.346894]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562041.0, "northing": 4799622.4, "time": "10:02:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764991, 43.346618]}, "properties": {"category": "real_shot", "line": "0979", "easting": 562001.6, "northing": 4799591.4, "time": "10:02:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764479, 43.346367]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561960.4, "northing": 4799563.2, "time": "10:03:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763966, 43.346117]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561919.1, "northing": 4799535.0, "time": "10:03:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76347, 43.345849]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561879.1, "northing": 4799504.9, "time": "10:03:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762972, 43.345584]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561839.0, "northing": 4799475.1, "time": "10:03:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762467, 43.345324]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561798.4, "northing": 4799445.8, "time": "10:04:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761961, 43.345069]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561757.6, "northing": 4799417.1, "time": "10:04:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761449, 43.344815]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561716.4, "northing": 4799388.6, "time": "10:04:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760938, 43.344564]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561675.2, "northing": 4799360.3, "time": "10:05:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760423, 43.344317]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561633.7, "northing": 4799332.5, "time": "10:05:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759905, 43.344071]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561592.0, "northing": 4799304.8, "time": "10:05:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759379, 43.343834]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561549.6, "northing": 4799278.1, "time": "10:05:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758863, 43.343588]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561508.0, "northing": 4799250.4, "time": "10:06:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758374, 43.343311]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561468.7, "northing": 4799219.3, "time": "10:06:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757887, 43.343033]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561429.5, "northing": 4799188.0, "time": "10:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757383, 43.342774]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561388.9, "northing": 4799158.9, "time": "10:07:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756858, 43.342537]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561346.6, "northing": 4799132.2, "time": "10:07:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756352, 43.34228]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561305.8, "northing": 4799103.3, "time": "10:07:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755842, 43.342027]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561264.7, "northing": 4799074.8, "time": "10:08:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755329, 43.341775]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561223.4, "northing": 4799046.5, "time": "10:08:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754816, 43.341525]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561182.1, "northing": 4799018.3, "time": "10:08:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754304, 43.341275]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561140.8, "northing": 4798990.2, "time": "10:08:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75379, 43.341027]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561099.4, "northing": 4798962.3, "time": "10:09:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753277, 43.340774]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561058.1, "northing": 4798933.8, "time": "10:09:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752766, 43.340523]}, "properties": {"category": "real_shot", "line": "0979", "easting": 561016.9, "northing": 4798905.5, "time": "10:09:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752251, 43.340276]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560975.4, "northing": 4798877.7, "time": "10:10:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751732, 43.340033]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560933.6, "northing": 4798850.4, "time": "10:10:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751229, 43.339773]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560893.1, "northing": 4798821.1, "time": "10:10:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750742, 43.339493]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560853.9, "northing": 4798789.7, "time": "10:10:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750253, 43.339218]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560814.5, "northing": 4798758.8, "time": "10:11:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749742, 43.338968]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560773.3, "northing": 4798730.6, "time": "10:11:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749225, 43.338721]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560731.7, "northing": 4798702.8, "time": "10:11:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748733, 43.338447]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560692.1, "northing": 4798672.0, "time": "10:12:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748227, 43.338191]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560651.3, "northing": 4798643.2, "time": "10:12:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747702, 43.337954]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560609.0, "northing": 4798616.5, "time": "10:12:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747194, 43.337698]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560568.1, "northing": 4798587.7, "time": "10:13:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746688, 43.337442]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560527.3, "northing": 4798558.9, "time": "10:13:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74618, 43.337186]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560486.4, "northing": 4798530.2, "time": "10:13:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745673, 43.336928]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560445.5, "northing": 4798501.1, "time": "10:13:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745167, 43.336669]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560404.8, "northing": 4798472.0, "time": "10:14:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744661, 43.336416]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560364.0, "northing": 4798443.5, "time": "10:14:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744151, 43.336161]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560322.9, "northing": 4798414.9, "time": "10:14:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743644, 43.335903]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560282.1, "northing": 4798385.8, "time": "10:15:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743134, 43.33565]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560241.0, "northing": 4798357.4, "time": "10:15:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74263, 43.335392]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560200.4, "northing": 4798328.3, "time": "10:15:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742124, 43.335134]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560159.6, "northing": 4798299.3, "time": "10:15:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741622, 43.334872]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560119.2, "northing": 4798269.9, "time": "10:16:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741119, 43.334611]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560078.7, "northing": 4798240.5, "time": "10:16:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740612, 43.334357]}, "properties": {"category": "real_shot", "line": "0979", "easting": 560037.8, "northing": 4798211.9, "time": "10:16:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740092, 43.334111]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559995.9, "northing": 4798184.3, "time": "10:17:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739569, 43.333873]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559953.7, "northing": 4798157.4, "time": "10:17:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739069, 43.333609]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559913.5, "northing": 4798127.8, "time": "10:17:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738563, 43.333352]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559872.7, "northing": 4798098.9, "time": "10:17:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738048, 43.333103]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559831.2, "northing": 4798070.9, "time": "10:18:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73752, 43.332871]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559788.6, "northing": 4798044.7, "time": "10:18:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737007, 43.332619]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559747.3, "northing": 4798016.4, "time": "10:18:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736511, 43.332352]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559707.3, "northing": 4797986.4, "time": "10:19:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736003, 43.332096]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559666.4, "northing": 4797957.6, "time": "10:19:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735486, 43.331851]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559624.7, "northing": 4797930.0, "time": "10:19:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734956, 43.33162]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559582.0, "northing": 4797904.0, "time": "10:20:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734451, 43.331361]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559541.3, "northing": 4797874.8, "time": "10:20:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733958, 43.331088]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559501.6, "northing": 4797844.2, "time": "10:20:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733464, 43.330819]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559461.8, "northing": 4797813.9, "time": "10:20:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732971, 43.330547]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559422.1, "northing": 4797783.4, "time": "10:21:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732461, 43.330295]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559381.0, "northing": 4797755.0, "time": "10:21:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731945, 43.330049]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559339.4, "northing": 4797727.3, "time": "10:21:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731442, 43.329786]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559298.9, "northing": 4797697.8, "time": "10:22:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730943, 43.329522]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559258.7, "northing": 4797668.1, "time": "10:22:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730434, 43.329267]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559217.7, "northing": 4797639.4, "time": "10:22:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729913, 43.329027]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559175.7, "northing": 4797612.4, "time": "10:22:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729384, 43.328795]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559133.0, "northing": 4797586.2, "time": "10:23:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728872, 43.328542]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559091.7, "northing": 4797557.8, "time": "10:23:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728375, 43.328277]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559051.7, "northing": 4797528.0, "time": "10:23:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727881, 43.328006]}, "properties": {"category": "real_shot", "line": "0979", "easting": 559011.9, "northing": 4797497.6, "time": "10:24:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727384, 43.327738]}, "properties": {"category": "real_shot", "line": "0979", "easting": 558971.9, "northing": 4797467.4, "time": "10:24:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72688, 43.327479]}, "properties": {"category": "real_shot", "line": "0979", "easting": 558931.3, "northing": 4797438.3, "time": "10:24:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726368, 43.327227]}, "properties": {"category": "real_shot", "line": "0979", "easting": 558890.0, "northing": 4797410.0, "time": "10:25:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725857, 43.326976]}, "properties": {"category": "real_shot", "line": "0979", "easting": 558848.8, "northing": 4797381.8, "time": "10:25:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725336, 43.326735]}, "properties": {"category": "real_shot", "line": "0979", "easting": 558806.8, "northing": 4797354.6, "time": "10:25:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.724811, 43.326498]}, "properties": {"category": "real_shot", "line": "0979", "easting": 558764.5, "northing": 4797327.9, "time": "10:25:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725252, 43.326032]}, "properties": {"category": "real_shot", "line": "0981", "easting": 558800.7, "northing": 4797276.5, "time": "11:49:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725711, 43.326336]}, "properties": {"category": "real_shot", "line": "0981", "easting": 558837.6, "northing": 4797310.6, "time": "11:50:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726211, 43.326605]}, "properties": {"category": "real_shot", "line": "0981", "easting": 558877.9, "northing": 4797340.8, "time": "11:50:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726746, 43.326829]}, "properties": {"category": "real_shot", "line": "0981", "easting": 558921.0, "northing": 4797366.0, "time": "11:50:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72724, 43.327099]}, "properties": {"category": "real_shot", "line": "0981", "easting": 558960.8, "northing": 4797396.4, "time": "11:51:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72775, 43.327354]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559001.9, "northing": 4797425.1, "time": "11:51:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728252, 43.327614]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559042.4, "northing": 4797454.3, "time": "11:51:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728776, 43.327852]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559084.6, "northing": 4797481.1, "time": "11:52:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729298, 43.328092]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559126.7, "northing": 4797508.1, "time": "11:52:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729801, 43.328353]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559167.2, "northing": 4797537.5, "time": "11:53:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730274, 43.328641]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559205.3, "northing": 4797569.8, "time": "11:53:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730758, 43.328928]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559244.3, "northing": 4797602.0, "time": "11:53:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731259, 43.329192]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559284.6, "northing": 4797631.7, "time": "11:54:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731782, 43.329428]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559326.8, "northing": 4797658.2, "time": "11:54:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732309, 43.329664]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559369.3, "northing": 4797684.8, "time": "11:55:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732825, 43.32991]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559410.9, "northing": 4797712.5, "time": "11:55:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733352, 43.330145]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559453.4, "northing": 4797739.0, "time": "11:55:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733862, 43.330398]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559494.5, "northing": 4797767.5, "time": "11:56:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734378, 43.330645]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559536.1, "northing": 4797795.3, "time": "11:56:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734887, 43.330899]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559577.1, "northing": 4797823.8, "time": "11:57:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735378, 43.331174]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559616.6, "northing": 4797854.7, "time": "11:57:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73588, 43.331434]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559657.1, "northing": 4797883.9, "time": "11:57:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736398, 43.331681]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559698.8, "northing": 4797911.7, "time": "11:58:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736931, 43.331908]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559741.8, "northing": 4797937.3, "time": "11:58:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737417, 43.332185]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559780.9, "northing": 4797968.4, "time": "11:59:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737912, 43.332458]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559820.8, "northing": 4797999.1, "time": "11:59:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738415, 43.332717]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559861.3, "northing": 4798028.2, "time": "11:59:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738926, 43.332974]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559902.5, "northing": 4798057.1, "time": "12:00:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73944, 43.33323]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559943.9, "northing": 4798085.9, "time": "12:00:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739946, 43.333477]}, "properties": {"category": "real_shot", "line": "0981", "easting": 559984.7, "northing": 4798113.8, "time": "12:00:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740465, 43.33372]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560026.5, "northing": 4798141.1, "time": "12:01:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740981, 43.333965]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560068.1, "northing": 4798168.7, "time": "12:01:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741478, 43.334231]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560108.1, "northing": 4798198.6, "time": "12:01:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741969, 43.334506]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560147.7, "northing": 4798229.5, "time": "12:02:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742471, 43.334768]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560188.1, "northing": 4798258.9, "time": "12:02:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742991, 43.335009]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560230.0, "northing": 4798286.1, "time": "12:02:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743504, 43.335259]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560271.4, "northing": 4798314.2, "time": "12:03:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743999, 43.335529]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560311.2, "northing": 4798344.6, "time": "12:03:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744506, 43.335785]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560352.1, "northing": 4798373.4, "time": "12:03:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745015, 43.336039]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560393.1, "northing": 4798401.9, "time": "12:04:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745532, 43.336285]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560434.7, "northing": 4798429.6, "time": "12:04:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746067, 43.336511]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560477.9, "northing": 4798455.1, "time": "12:04:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746565, 43.336778]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560518.0, "northing": 4798485.1, "time": "12:05:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747063, 43.337044]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560558.1, "northing": 4798515.0, "time": "12:05:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747566, 43.337305]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560598.6, "northing": 4798544.4, "time": "12:06:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748075, 43.337559]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560639.6, "northing": 4798572.9, "time": "12:06:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748584, 43.337813]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560680.6, "northing": 4798601.5, "time": "12:06:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749091, 43.338069]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560721.5, "northing": 4798630.3, "time": "12:07:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7496, 43.338324]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560762.5, "northing": 4798659.0, "time": "12:07:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750106, 43.338581]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560803.2, "northing": 4798687.9, "time": "12:07:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750616, 43.338835]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560844.3, "northing": 4798716.5, "time": "12:08:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751136, 43.339077]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560886.2, "northing": 4798743.8, "time": "12:08:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751667, 43.339308]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560929.0, "northing": 4798769.8, "time": "12:08:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752178, 43.33956]}, "properties": {"category": "real_shot", "line": "0981", "easting": 560970.2, "northing": 4798798.2, "time": "12:09:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75268, 43.339821]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561010.6, "northing": 4798827.5, "time": "12:09:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753178, 43.34009]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561050.7, "northing": 4798857.7, "time": "12:09:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753687, 43.340344]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561091.7, "northing": 4798886.3, "time": "12:10:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754193, 43.3406]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561132.5, "northing": 4798915.1, "time": "12:10:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754708, 43.340848]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561174.0, "northing": 4798943.0, "time": "12:10:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755191, 43.341129]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561212.9, "northing": 4798974.6, "time": "12:11:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755682, 43.341405]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561252.4, "northing": 4799005.6, "time": "12:11:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756177, 43.341673]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561292.2, "northing": 4799035.8, "time": "12:11:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756684, 43.341929]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561333.1, "northing": 4799064.6, "time": "12:12:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757226, 43.342147]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561376.8, "northing": 4799089.2, "time": "12:12:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75773, 43.342407]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561417.4, "northing": 4799118.4, "time": "12:12:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758228, 43.342673]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561457.5, "northing": 4799148.3, "time": "12:13:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758729, 43.342937]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561497.8, "northing": 4799178.0, "time": "12:13:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759233, 43.343196]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561538.4, "northing": 4799207.1, "time": "12:13:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759759, 43.343433]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561580.8, "northing": 4799233.8, "time": "12:14:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76027, 43.343683]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561622.0, "northing": 4799262.0, "time": "12:14:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760784, 43.343934]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561663.4, "northing": 4799290.2, "time": "12:14:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76131, 43.344171]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561705.8, "northing": 4799316.9, "time": "12:15:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761819, 43.344424]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561746.8, "northing": 4799345.4, "time": "12:15:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76233, 43.344678]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561787.9, "northing": 4799374.0, "time": "12:15:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762844, 43.344926]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561829.3, "northing": 4799401.9, "time": "12:16:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763331, 43.345202]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561868.5, "northing": 4799432.9, "time": "12:16:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763801, 43.345499]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561906.3, "northing": 4799466.3, "time": "12:16:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764293, 43.345774]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561945.9, "northing": 4799497.2, "time": "12:17:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764824, 43.346003]}, "properties": {"category": "real_shot", "line": "0981", "easting": 561988.7, "northing": 4799523.0, "time": "12:17:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765345, 43.346244]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562030.7, "northing": 4799550.2, "time": "12:17:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765854, 43.346498]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562071.7, "northing": 4799578.7, "time": "12:18:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766368, 43.346748]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562113.1, "northing": 4799606.9, "time": "12:18:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766887, 43.346992]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562154.9, "northing": 4799634.4, "time": "12:18:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767408, 43.347232]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562196.9, "northing": 4799661.4, "time": "12:19:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767932, 43.347471]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562239.1, "northing": 4799688.4, "time": "12:19:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768463, 43.347703]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562281.9, "northing": 4799714.5, "time": "12:19:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76898, 43.347946]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562323.6, "northing": 4799741.9, "time": "12:20:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76946, 43.348235]}, "properties": {"category": "real_shot", "line": "0981", "easting": 562362.2, "northing": 4799774.3, "time": "12:20:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725619, 43.325652]}, "properties": {"category": "real_shot", "line": "0983", "easting": 558830.8, "northing": 4797234.5, "time": "09:33:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72609, 43.325939]}, "properties": {"category": "real_shot", "line": "0983", "easting": 558868.7, "northing": 4797266.8, "time": "09:33:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726557, 43.326236]}, "properties": {"category": "real_shot", "line": "0983", "easting": 558906.3, "northing": 4797300.1, "time": "09:34:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727073, 43.326482]}, "properties": {"category": "real_shot", "line": "0983", "easting": 558947.9, "northing": 4797327.8, "time": "09:34:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72759, 43.326727]}, "properties": {"category": "real_shot", "line": "0983", "easting": 558989.6, "northing": 4797355.3, "time": "09:34:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728097, 43.326984]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559030.4, "northing": 4797384.2, "time": "09:34:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728599, 43.327244]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559070.9, "northing": 4797413.5, "time": "09:35:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729108, 43.3275]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559111.9, "northing": 4797442.2, "time": "09:35:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729619, 43.327751]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559153.1, "northing": 4797470.5, "time": "09:35:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73014, 43.327993]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559195.1, "northing": 4797497.7, "time": "09:36:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730656, 43.328239]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559236.7, "northing": 4797525.4, "time": "09:36:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731164, 43.328496]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559277.6, "northing": 4797554.3, "time": "09:36:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731676, 43.328746]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559318.9, "northing": 4797582.4, "time": "09:36:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732178, 43.329008]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559359.3, "northing": 4797611.9, "time": "09:37:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732656, 43.329296]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559397.8, "northing": 4797644.2, "time": "09:37:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733142, 43.329573]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559436.9, "northing": 4797675.3, "time": "09:37:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733637, 43.329844]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559476.8, "northing": 4797705.8, "time": "09:38:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734151, 43.330092]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559518.2, "northing": 4797733.7, "time": "09:38:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734682, 43.330322]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559561.0, "northing": 4797759.6, "time": "09:38:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735203, 43.330564]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559603.0, "northing": 4797786.9, "time": "09:38:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735709, 43.330822]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559643.8, "northing": 4797815.9, "time": "09:39:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736225, 43.331068]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559685.4, "northing": 4797843.5, "time": "09:39:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736753, 43.3313]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559728.0, "northing": 4797869.7, "time": "09:39:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737271, 43.331547]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559769.7, "northing": 4797897.5, "time": "09:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737779, 43.331801]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559810.7, "northing": 4797926.1, "time": "09:40:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738288, 43.332056]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559851.7, "northing": 4797954.7, "time": "09:40:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738772, 43.332337]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559890.6, "northing": 4797986.3, "time": "09:40:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739255, 43.332621]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559929.5, "northing": 4798018.2, "time": "09:41:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739747, 43.332892]}, "properties": {"category": "real_shot", "line": "0983", "easting": 559969.1, "northing": 4798048.6, "time": "09:41:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740254, 43.333148]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560010.0, "northing": 4798077.4, "time": "09:41:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740774, 43.333389]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560051.9, "northing": 4798104.6, "time": "09:42:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741291, 43.333635]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560093.6, "northing": 4798132.3, "time": "09:42:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741795, 43.333895]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560134.2, "northing": 4798161.5, "time": "09:42:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742305, 43.334147]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560175.3, "northing": 4798189.9, "time": "09:42:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742839, 43.334375]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560218.3, "northing": 4798215.6, "time": "09:43:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743359, 43.334621]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560260.2, "northing": 4798243.3, "time": "09:43:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743873, 43.334868]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560301.7, "northing": 4798271.0, "time": "09:43:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744392, 43.33511]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560343.5, "northing": 4798298.3, "time": "09:44:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7449, 43.335367]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560384.4, "northing": 4798327.2, "time": "09:44:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745387, 43.335646]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560423.6, "northing": 4798358.5, "time": "09:44:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745871, 43.335925]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560462.6, "northing": 4798389.9, "time": "09:44:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746361, 43.336202]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560502.0, "northing": 4798421.0, "time": "09:45:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746866, 43.336459]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560542.7, "northing": 4798449.9, "time": "09:45:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747386, 43.3367]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560584.6, "northing": 4798477.1, "time": "09:45:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747883, 43.336968]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560624.6, "northing": 4798507.2, "time": "09:46:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74839, 43.337224]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560665.5, "northing": 4798536.0, "time": "09:46:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748914, 43.337464]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560707.7, "northing": 4798563.0, "time": "09:46:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749446, 43.337692]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560750.6, "northing": 4798588.7, "time": "09:46:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749963, 43.337938]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560792.3, "northing": 4798616.4, "time": "09:47:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750478, 43.338187]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560833.8, "northing": 4798644.4, "time": "09:47:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750994, 43.338433]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560875.4, "northing": 4798672.1, "time": "09:47:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751485, 43.338705]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560914.9, "northing": 4798702.7, "time": "09:48:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751984, 43.338973]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560955.1, "northing": 4798732.8, "time": "09:48:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752485, 43.339234]}, "properties": {"category": "real_shot", "line": "0983", "easting": 560995.4, "northing": 4798762.2, "time": "09:48:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752985, 43.339497]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561035.7, "northing": 4798791.7, "time": "09:48:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753493, 43.339755]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561076.6, "northing": 4798820.8, "time": "09:49:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754014, 43.339994]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561118.6, "northing": 4798847.7, "time": "09:49:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754538, 43.340232]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561160.8, "northing": 4798874.5, "time": "09:49:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755043, 43.340493]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561201.5, "northing": 4798903.9, "time": "09:50:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755556, 43.340743]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561242.8, "northing": 4798932.0, "time": "09:50:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756082, 43.340978]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561285.2, "northing": 4798958.5, "time": "09:50:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756581, 43.341241]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561325.4, "northing": 4798988.1, "time": "09:51:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757074, 43.341515]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561365.1, "northing": 4799018.9, "time": "09:51:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757571, 43.341783]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561405.1, "northing": 4799049.0, "time": "09:51:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758091, 43.342024]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561447.0, "northing": 4799076.1, "time": "09:51:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758597, 43.342281]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561487.8, "northing": 4799105.1, "time": "09:52:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759087, 43.342556]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561527.2, "northing": 4799136.0, "time": "09:52:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759584, 43.342823]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561567.2, "northing": 4799166.0, "time": "09:52:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760083, 43.343087]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561607.4, "northing": 4799195.7, "time": "09:53:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760588, 43.343348]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561648.1, "northing": 4799225.0, "time": "09:53:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761095, 43.343602]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561688.9, "northing": 4799253.6, "time": "09:53:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761608, 43.343854]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561730.2, "northing": 4799282.0, "time": "09:53:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762121, 43.344102]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561771.6, "northing": 4799309.9, "time": "09:54:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762637, 43.34435]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561813.1, "northing": 4799337.8, "time": "09:54:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763154, 43.344596]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561854.8, "northing": 4799365.5, "time": "09:54:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763677, 43.344835]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561896.9, "northing": 4799392.4, "time": "09:55:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764216, 43.345055]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561940.4, "northing": 4799417.3, "time": "09:55:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764743, 43.345295]}, "properties": {"category": "real_shot", "line": "0983", "easting": 561982.9, "northing": 4799444.3, "time": "09:55:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765252, 43.345549]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562023.9, "northing": 4799472.9, "time": "09:55:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765757, 43.345806]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562064.5, "northing": 4799501.8, "time": "09:56:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76625, 43.346077]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562104.2, "northing": 4799532.3, "time": "09:56:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766741, 43.346351]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562143.7, "northing": 4799563.1, "time": "09:56:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767224, 43.346632]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562182.6, "northing": 4799594.6, "time": "09:57:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767704, 43.346918]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562221.2, "northing": 4799626.8, "time": "09:57:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768201, 43.347186]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562261.2, "northing": 4799656.9, "time": "09:57:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768711, 43.347437]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562302.3, "northing": 4799685.2, "time": "09:57:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769245, 43.347666]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562345.3, "northing": 4799711.0, "time": "09:58:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769763, 43.347911]}, "properties": {"category": "real_shot", "line": "0983", "easting": 562387.1, "northing": 4799738.6, "time": "09:58:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770178, 43.347449]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562421.2, "northing": 4799687.6, "time": "12:22:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769758, 43.347114]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562387.5, "northing": 4799650.1, "time": "12:22:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769355, 43.346755]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562355.2, "northing": 4799609.9, "time": "12:23:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76885, 43.346494]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562314.5, "northing": 4799580.5, "time": "12:23:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768302, 43.34628]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562270.3, "northing": 4799556.3, "time": "12:23:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767711, 43.346111]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562222.6, "northing": 4799537.1, "time": "12:24:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76713, 43.345932]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562175.7, "northing": 4799516.8, "time": "12:24:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766597, 43.345707]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562132.7, "northing": 4799491.4, "time": "12:24:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766085, 43.345452]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562091.5, "northing": 4799462.8, "time": "12:24:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765582, 43.345195]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562051.0, "northing": 4799433.8, "time": "12:25:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765061, 43.344955]}, "properties": {"category": "real_shot", "line": "0985", "easting": 562009.0, "northing": 4799406.8, "time": "12:25:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764536, 43.344717]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561966.7, "northing": 4799380.0, "time": "12:25:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764043, 43.344444]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561927.0, "northing": 4799349.3, "time": "12:26:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763551, 43.344173]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561887.4, "northing": 4799318.8, "time": "12:26:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76303, 43.343932]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561845.4, "northing": 4799291.7, "time": "12:26:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762516, 43.343682]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561804.0, "northing": 4799263.5, "time": "12:26:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762014, 43.343419]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561763.6, "northing": 4799233.9, "time": "12:27:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761505, 43.343164]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561722.6, "northing": 4799205.3, "time": "12:27:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760979, 43.342929]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561680.2, "northing": 4799178.8, "time": "12:27:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760438, 43.342708]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561636.6, "northing": 4799153.8, "time": "12:28:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759922, 43.342464]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561595.0, "northing": 4799126.3, "time": "12:28:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759409, 43.342212]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561553.7, "northing": 4799098.0, "time": "12:28:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758908, 43.341948]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561513.3, "northing": 4799068.3, "time": "12:29:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758402, 43.341689]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561472.6, "northing": 4799039.2, "time": "12:29:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757889, 43.341443]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561431.2, "northing": 4799011.5, "time": "12:29:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757365, 43.341205]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561389.0, "northing": 4798984.7, "time": "12:29:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756871, 43.340934]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561349.2, "northing": 4798954.2, "time": "12:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756379, 43.340659]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561309.6, "northing": 4798923.3, "time": "12:30:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755894, 43.34038]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561270.6, "northing": 4798891.9, "time": "12:30:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755407, 43.340104]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561231.4, "northing": 4798860.9, "time": "12:31:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754902, 43.339849]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561190.7, "northing": 4798832.2, "time": "12:31:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754364, 43.339623]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561147.3, "northing": 4798806.7, "time": "12:31:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753845, 43.339377]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561105.5, "northing": 4798779.1, "time": "12:31:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753332, 43.339127]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561064.2, "northing": 4798750.9, "time": "12:32:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752833, 43.338861]}, "properties": {"category": "real_shot", "line": "0985", "easting": 561024.0, "northing": 4798721.0, "time": "12:32:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752323, 43.338608]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560982.9, "northing": 4798692.5, "time": "12:32:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751805, 43.338365]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560941.2, "northing": 4798665.2, "time": "12:33:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751271, 43.338136]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560898.1, "northing": 4798639.4, "time": "12:33:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750758, 43.337886]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560856.8, "northing": 4798611.2, "time": "12:33:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75027, 43.33761]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560817.5, "northing": 4798580.2, "time": "12:33:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749797, 43.337324]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560779.4, "northing": 4798548.1, "time": "12:34:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7493, 43.33705]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560739.4, "northing": 4798517.3, "time": "12:34:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748774, 43.336817]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560697.0, "northing": 4798491.1, "time": "12:34:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74821, 43.336619]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560651.5, "northing": 4798468.6, "time": "12:35:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747669, 43.336396]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560607.9, "northing": 4798443.5, "time": "12:35:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747183, 43.33612]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560568.7, "northing": 4798412.5, "time": "12:35:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746731, 43.335806]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560532.4, "northing": 4798377.3, "time": "12:35:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746259, 43.335513]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560494.4, "northing": 4798344.4, "time": "12:36:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745752, 43.335257]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560453.6, "northing": 4798315.6, "time": "12:36:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745247, 43.334998]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560412.9, "northing": 4798286.5, "time": "12:36:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744734, 43.334744]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560371.6, "northing": 4798257.9, "time": "12:37:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744224, 43.334493]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560330.5, "northing": 4798229.7, "time": "12:37:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743706, 43.33425]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560288.7, "northing": 4798202.3, "time": "12:37:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743171, 43.334024]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560245.6, "northing": 4798176.8, "time": "12:37:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742651, 43.333777]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560203.7, "northing": 4798149.0, "time": "12:38:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742152, 43.333515]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560163.5, "northing": 4798119.6, "time": "12:38:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741659, 43.333244]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560123.8, "northing": 4798089.1, "time": "12:38:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741164, 43.332973]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560083.9, "northing": 4798058.7, "time": "12:39:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740666, 43.332712]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560043.8, "northing": 4798029.3, "time": "12:39:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74014, 43.332476]}, "properties": {"category": "real_shot", "line": "0985", "easting": 560001.4, "northing": 4798002.7, "time": "12:39:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739604, 43.332244]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559958.2, "northing": 4797976.6, "time": "12:40:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739077, 43.332009]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559915.7, "northing": 4797950.1, "time": "12:40:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738609, 43.331714]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559878.0, "northing": 4797917.0, "time": "12:40:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738138, 43.331424]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559840.1, "northing": 4797884.4, "time": "12:40:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73762, 43.331174]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559798.4, "northing": 4797856.3, "time": "12:41:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737111, 43.33092]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559757.4, "northing": 4797827.7, "time": "12:41:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736606, 43.33066]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559716.7, "northing": 4797798.5, "time": "12:41:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736102, 43.330405]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559676.1, "northing": 4797769.8, "time": "12:42:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735586, 43.330156]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559634.5, "northing": 4797741.8, "time": "12:42:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735065, 43.329913]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559592.5, "northing": 4797714.4, "time": "12:42:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734536, 43.329682]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559549.8, "northing": 4797688.4, "time": "12:42:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734028, 43.329428]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559508.9, "northing": 4797659.8, "time": "12:43:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733523, 43.329162]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559468.2, "northing": 4797630.0, "time": "12:43:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733035, 43.328889]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559428.9, "northing": 4797599.3, "time": "12:43:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732544, 43.328619]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559389.4, "northing": 4797568.9, "time": "12:44:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732016, 43.328387]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559346.8, "northing": 4797542.8, "time": "12:44:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731495, 43.328142]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559304.8, "northing": 4797515.2, "time": "12:44:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730968, 43.327905]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559262.3, "northing": 4797488.5, "time": "12:44:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730467, 43.327643]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559221.9, "northing": 4797459.1, "time": "12:45:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729987, 43.327359]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559183.3, "northing": 4797427.2, "time": "12:45:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729487, 43.327098]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559143.0, "northing": 4797397.9, "time": "12:45:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728993, 43.326828]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559103.2, "northing": 4797367.5, "time": "12:46:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728487, 43.326568]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559062.4, "northing": 4797338.3, "time": "12:46:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727958, 43.326336]}, "properties": {"category": "real_shot", "line": "0985", "easting": 559019.8, "northing": 4797312.2, "time": "12:46:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727437, 43.326093]}, "properties": {"category": "real_shot", "line": "0985", "easting": 558977.8, "northing": 4797284.8, "time": "12:46:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726923, 43.325847]}, "properties": {"category": "real_shot", "line": "0985", "easting": 558936.3, "northing": 4797257.1, "time": "12:47:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726409, 43.325596]}, "properties": {"category": "real_shot", "line": "0985", "easting": 558894.9, "northing": 4797228.9, "time": "12:47:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.725909, 43.325332]}, "properties": {"category": "real_shot", "line": "0985", "easting": 558854.6, "northing": 4797199.2, "time": "12:47:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77045, 43.347173]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562443.5, "northing": 4799657.1, "time": "09:05:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769979, 43.346871]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562405.6, "northing": 4799623.2, "time": "09:05:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769498, 43.346597]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562366.9, "northing": 4799592.5, "time": "09:06:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76897, 43.346365]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562324.4, "northing": 4799566.3, "time": "09:06:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7684, 43.346179]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562278.4, "northing": 4799545.2, "time": "09:06:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767841, 43.345974]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562233.3, "northing": 4799522.0, "time": "09:06:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767338, 43.345716]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562192.8, "northing": 4799493.0, "time": "09:07:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766845, 43.345446]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562153.1, "northing": 4799462.7, "time": "09:07:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766364, 43.345162]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562114.4, "northing": 4799430.8, "time": "09:07:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765871, 43.344888]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562074.7, "northing": 4799399.9, "time": "09:08:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765365, 43.344632]}, "properties": {"category": "real_shot", "line": "0987", "easting": 562034.0, "northing": 4799371.1, "time": "09:08:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764876, 43.344357]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561994.6, "northing": 4799340.2, "time": "09:08:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764381, 43.344086]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561954.8, "northing": 4799309.8, "time": "09:09:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763871, 43.343834]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561913.7, "northing": 4799281.4, "time": "09:09:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763366, 43.343576]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561873.0, "northing": 4799252.4, "time": "09:09:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762854, 43.343323]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561831.8, "northing": 4799223.9, "time": "09:09:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762325, 43.343091]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561789.1, "northing": 4799197.8, "time": "09:10:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761811, 43.342841]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561747.7, "northing": 4799169.6, "time": "09:10:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761293, 43.342598]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561706.0, "northing": 4799142.2, "time": "09:10:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76077, 43.342358]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561663.8, "northing": 4799115.2, "time": "09:11:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760247, 43.342118]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561621.7, "northing": 4799088.2, "time": "09:11:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759725, 43.341879]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561579.6, "northing": 4799061.2, "time": "09:11:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759195, 43.341645]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561536.9, "northing": 4799034.9, "time": "09:11:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758684, 43.341394]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561495.7, "northing": 4799006.6, "time": "09:12:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758188, 43.341125]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561455.8, "northing": 4798976.4, "time": "09:12:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757683, 43.340867]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561415.1, "northing": 4798947.3, "time": "09:12:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757169, 43.340617]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561373.7, "northing": 4798919.2, "time": "09:13:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756644, 43.340382]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561331.4, "northing": 4798892.7, "time": "09:13:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756149, 43.34011]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561291.5, "northing": 4798862.2, "time": "09:13:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755659, 43.339836]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561252.1, "northing": 4798831.4, "time": "09:13:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755151, 43.339581]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561211.2, "northing": 4798802.7, "time": "09:14:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75464, 43.339331]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561170.0, "northing": 4798774.5, "time": "09:14:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754153, 43.339052]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561130.8, "northing": 4798743.2, "time": "09:14:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753663, 43.338777]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561091.4, "northing": 4798712.3, "time": "09:15:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753168, 43.338508]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561051.5, "northing": 4798682.1, "time": "09:15:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752675, 43.338237]}, "properties": {"category": "real_shot", "line": "0987", "easting": 561011.8, "northing": 4798651.6, "time": "09:15:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752183, 43.337965]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560972.2, "northing": 4798621.0, "time": "09:15:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751687, 43.337696]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560932.3, "northing": 4798590.8, "time": "09:16:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751193, 43.337426]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560892.5, "northing": 4798560.4, "time": "09:16:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750693, 43.337162]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560852.2, "northing": 4798530.8, "time": "09:16:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750157, 43.336938]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560809.0, "northing": 4798505.5, "time": "09:17:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749635, 43.336697]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560766.9, "northing": 4798478.3, "time": "09:17:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749128, 43.33644]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560726.1, "northing": 4798449.4, "time": "09:17:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748612, 43.336194]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560684.5, "northing": 4798421.7, "time": "09:18:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748082, 43.335962]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560641.8, "northing": 4798395.6, "time": "09:18:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747549, 43.335733]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560598.8, "northing": 4798369.8, "time": "09:18:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747039, 43.335482]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560557.7, "northing": 4798341.5, "time": "09:18:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746533, 43.335224]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560516.9, "northing": 4798312.5, "time": "09:19:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746036, 43.334955]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560476.9, "northing": 4798282.3, "time": "09:19:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745546, 43.33468]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560437.5, "northing": 4798251.4, "time": "09:19:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745033, 43.33443]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560396.1, "northing": 4798223.2, "time": "09:20:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744535, 43.334164]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560356.0, "northing": 4798193.4, "time": "09:20:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744042, 43.333893]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560316.3, "northing": 4798162.9, "time": "09:20:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74354, 43.333632]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560275.9, "northing": 4798133.6, "time": "09:20:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743028, 43.333383]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560234.6, "northing": 4798105.5, "time": "09:21:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742504, 43.333143]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560192.4, "northing": 4798078.5, "time": "09:21:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741981, 43.332904]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560150.2, "northing": 4798051.6, "time": "09:21:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74148, 43.332639]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560109.9, "northing": 4798021.8, "time": "09:22:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740978, 43.332378]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560069.4, "northing": 4797992.4, "time": "09:22:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740458, 43.332136]}, "properties": {"category": "real_shot", "line": "0987", "easting": 560027.5, "northing": 4797965.2, "time": "09:22:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739939, 43.331894]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559985.7, "northing": 4797937.9, "time": "09:23:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73944, 43.331627]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559945.5, "northing": 4797907.9, "time": "09:23:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738931, 43.331372]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559904.5, "northing": 4797879.3, "time": "09:23:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73841, 43.331133]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559862.5, "northing": 4797852.3, "time": "09:23:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737899, 43.330879]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559821.3, "northing": 4797823.8, "time": "09:24:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737394, 43.330622]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559780.6, "northing": 4797794.9, "time": "09:24:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736884, 43.330368]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559739.5, "northing": 4797766.3, "time": "09:24:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736376, 43.330112]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559698.6, "northing": 4797737.5, "time": "09:25:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735868, 43.329858]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559657.6, "northing": 4797708.9, "time": "09:25:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73536, 43.329603]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559616.7, "northing": 4797680.2, "time": "09:25:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734851, 43.329348]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559575.7, "northing": 4797651.6, "time": "09:25:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734341, 43.329096]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559534.6, "northing": 4797623.2, "time": "09:26:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733827, 43.328846]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559493.2, "northing": 4797595.1, "time": "09:26:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733316, 43.328594]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559452.0, "northing": 4797566.7, "time": "09:26:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732842, 43.328303]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559413.8, "northing": 4797534.1, "time": "09:27:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732358, 43.328022]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559374.9, "northing": 4797502.5, "time": "09:27:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731859, 43.327757]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559334.7, "northing": 4797472.7, "time": "09:27:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731337, 43.327517]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559292.6, "northing": 4797445.7, "time": "09:27:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730817, 43.327274]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559250.7, "northing": 4797418.3, "time": "09:28:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73031, 43.327017]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559209.8, "northing": 4797389.5, "time": "09:28:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729788, 43.326779]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559167.7, "northing": 4797362.7, "time": "09:28:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729251, 43.326555]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559124.4, "northing": 4797337.4, "time": "09:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728748, 43.326294]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559083.9, "northing": 4797308.0, "time": "09:29:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728249, 43.326027]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559043.7, "northing": 4797278.0, "time": "09:29:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727748, 43.325765]}, "properties": {"category": "real_shot", "line": "0987", "easting": 559003.3, "northing": 4797248.6, "time": "09:30:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727244, 43.325506]}, "properties": {"category": "real_shot", "line": "0987", "easting": 558962.7, "northing": 4797219.5, "time": "09:30:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726739, 43.325247]}, "properties": {"category": "real_shot", "line": "0987", "easting": 558922.0, "northing": 4797190.4, "time": "09:30:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726224, 43.325001]}, "properties": {"category": "real_shot", "line": "0987", "easting": 558880.5, "northing": 4797162.7, "time": "09:30:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726675, 43.324518]}, "properties": {"category": "real_shot", "line": "0989", "easting": 558917.5, "northing": 4797109.4, "time": "12:50:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727114, 43.324852]}, "properties": {"category": "real_shot", "line": "0989", "easting": 558952.8, "northing": 4797146.8, "time": "12:51:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727617, 43.32511]}, "properties": {"category": "real_shot", "line": "0989", "easting": 558993.3, "northing": 4797175.8, "time": "12:51:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728113, 43.325377]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559033.3, "northing": 4797205.8, "time": "12:51:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728674, 43.325575]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559078.6, "northing": 4797228.1, "time": "12:52:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.72924, 43.325769]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559124.3, "northing": 4797250.1, "time": "12:52:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729747, 43.326023]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559165.1, "northing": 4797278.7, "time": "12:52:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730201, 43.326336]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559201.6, "northing": 4797313.8, "time": "12:53:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730663, 43.326645]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559238.8, "northing": 4797348.4, "time": "12:53:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731178, 43.32689]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559280.3, "northing": 4797376.0, "time": "12:54:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731715, 43.327115]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559323.6, "northing": 4797401.3, "time": "12:54:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732193, 43.327401]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559362.1, "northing": 4797433.4, "time": "12:54:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732664, 43.327698]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559400.0, "northing": 4797466.7, "time": "12:55:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733187, 43.327936]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559442.2, "northing": 4797493.6, "time": "12:55:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733711, 43.328173]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559484.4, "northing": 4797520.3, "time": "12:55:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734229, 43.328418]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559526.2, "northing": 4797547.8, "time": "12:56:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734743, 43.328667]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559567.6, "northing": 4797575.8, "time": "12:56:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735247, 43.328927]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559608.2, "northing": 4797605.1, "time": "12:56:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735752, 43.329185]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559648.9, "northing": 4797634.1, "time": "12:57:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736257, 43.329443]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559689.6, "northing": 4797663.1, "time": "12:57:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736749, 43.329715]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559729.2, "northing": 4797693.7, "time": "12:57:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737252, 43.329979]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559769.7, "northing": 4797723.3, "time": "12:58:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73776, 43.330232]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559810.7, "northing": 4797751.8, "time": "12:58:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73826, 43.330496]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559850.9, "northing": 4797781.5, "time": "12:58:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738773, 43.330746]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559892.3, "northing": 4797809.6, "time": "12:59:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739303, 43.330977]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559935.0, "northing": 4797835.7, "time": "12:59:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739804, 43.33124]}, "properties": {"category": "real_shot", "line": "0989", "easting": 559975.4, "northing": 4797865.2, "time": "12:59:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740322, 43.331485]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560017.1, "northing": 4797892.8, "time": "13:00:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740839, 43.331729]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560058.8, "northing": 4797920.3, "time": "13:00:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741332, 43.332003]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560098.5, "northing": 4797951.0, "time": "13:00:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741831, 43.332267]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560138.7, "northing": 4797980.7, "time": "13:01:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742348, 43.332511]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560180.4, "northing": 4798008.2, "time": "13:01:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742856, 43.332767]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560221.3, "northing": 4798037.0, "time": "13:01:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743355, 43.333032]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560261.5, "northing": 4798066.8, "time": "13:02:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743863, 43.333288]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560302.4, "northing": 4798095.6, "time": "13:02:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744379, 43.333535]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560344.0, "northing": 4798123.4, "time": "13:02:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744901, 43.333772]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560386.1, "northing": 4798150.1, "time": "13:03:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745389, 43.33405]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560425.4, "northing": 4798181.3, "time": "13:03:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7459, 43.334305]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560466.5, "northing": 4798210.0, "time": "13:03:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746425, 43.334541]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560508.9, "northing": 4798236.6, "time": "13:04:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746932, 43.334797]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560549.7, "northing": 4798265.4, "time": "13:04:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747441, 43.335051]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560590.7, "northing": 4798294.0, "time": "13:04:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747935, 43.335322]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560630.5, "northing": 4798324.4, "time": "13:05:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748428, 43.335593]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560670.2, "northing": 4798354.9, "time": "13:05:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748933, 43.335851]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560710.9, "northing": 4798383.9, "time": "13:05:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74945, 43.336097]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560752.5, "northing": 4798411.6, "time": "13:06:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749974, 43.336334]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560794.8, "northing": 4798438.3, "time": "13:06:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750476, 43.336596]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560835.2, "northing": 4798467.8, "time": "13:06:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750975, 43.336862]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560875.4, "northing": 4798497.6, "time": "13:07:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751497, 43.337101]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560917.5, "northing": 4798524.6, "time": "13:07:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752004, 43.337359]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560958.3, "northing": 4798553.6, "time": "13:07:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752496, 43.337631]}, "properties": {"category": "real_shot", "line": "0989", "easting": 560997.9, "northing": 4798584.2, "time": "13:08:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752982, 43.337909]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561037.0, "northing": 4798615.4, "time": "13:08:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753476, 43.33818]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561076.8, "northing": 4798645.8, "time": "13:09:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75401, 43.338408]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561119.9, "northing": 4798671.6, "time": "13:09:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754517, 43.338663]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561160.7, "northing": 4798700.3, "time": "13:09:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755025, 43.338921]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561201.6, "northing": 4798729.3, "time": "13:10:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755524, 43.339184]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561241.8, "northing": 4798758.9, "time": "13:10:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756045, 43.339428]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561283.8, "northing": 4798786.3, "time": "13:10:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756576, 43.339657]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561326.6, "northing": 4798812.1, "time": "13:11:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757092, 43.339903]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561368.2, "northing": 4798839.9, "time": "13:11:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757604, 43.340155]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561409.4, "northing": 4798868.2, "time": "13:11:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758117, 43.340404]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561450.8, "northing": 4798896.3, "time": "13:12:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758648, 43.340637]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561493.6, "northing": 4798922.5, "time": "13:12:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759157, 43.340887]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561534.6, "northing": 4798950.7, "time": "13:12:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759646, 43.341166]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561573.9, "northing": 4798982.0, "time": "13:13:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760139, 43.341437]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561613.6, "northing": 4799012.5, "time": "13:13:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760623, 43.341717]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561652.6, "northing": 4799043.9, "time": "13:13:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761135, 43.341968]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561693.8, "northing": 4799072.2, "time": "13:14:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761648, 43.342219]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561735.1, "northing": 4799100.4, "time": "13:14:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762183, 43.342446]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561778.3, "northing": 4799126.0, "time": "13:14:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762703, 43.342687]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561820.2, "northing": 4799153.2, "time": "13:15:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763215, 43.34294]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561861.4, "northing": 4799181.6, "time": "13:15:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763719, 43.343198]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561902.0, "northing": 4799210.7, "time": "13:15:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764222, 43.34346]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561942.5, "northing": 4799240.1, "time": "13:16:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764749, 43.343696]}, "properties": {"category": "real_shot", "line": "0989", "easting": 561985.0, "northing": 4799266.7, "time": "13:16:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765253, 43.343953]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562025.6, "northing": 4799295.7, "time": "13:16:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765748, 43.344225]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562065.4, "northing": 4799326.2, "time": "13:17:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766247, 43.344489]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562105.6, "northing": 4799355.9, "time": "13:17:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766776, 43.344722]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562148.2, "northing": 4799382.2, "time": "13:17:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767277, 43.344984]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562188.6, "northing": 4799411.7, "time": "13:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767786, 43.345238]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562229.6, "northing": 4799440.3, "time": "13:18:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76831, 43.345478]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562271.8, "northing": 4799467.3, "time": "13:18:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768823, 43.345727]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562313.1, "northing": 4799495.3, "time": "13:19:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769293, 43.346023]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562350.9, "northing": 4799528.5, "time": "13:19:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769774, 43.346309]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562389.6, "northing": 4799560.7, "time": "13:19:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770299, 43.346544]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562431.9, "northing": 4799587.2, "time": "13:20:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770825, 43.346781]}, "properties": {"category": "real_shot", "line": "0989", "easting": 562474.3, "northing": 4799613.9, "time": "13:20:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.726999, 43.32418]}, "properties": {"category": "real_shot", "line": "0991", "easting": 558944.1, "northing": 4797072.1, "time": "08:38:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727481, 43.32446]}, "properties": {"category": "real_shot", "line": "0991", "easting": 558982.9, "northing": 4797103.5, "time": "08:38:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727975, 43.324728]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559022.7, "northing": 4797133.6, "time": "08:38:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728459, 43.32501]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559061.7, "northing": 4797165.3, "time": "08:39:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728959, 43.325272]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559102.0, "northing": 4797194.7, "time": "08:39:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729478, 43.325514]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559143.8, "northing": 4797222.0, "time": "08:39:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729982, 43.325775]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559184.4, "northing": 4797251.3, "time": "08:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730481, 43.32604]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559224.6, "northing": 4797281.1, "time": "08:40:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730975, 43.326311]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559264.4, "northing": 4797311.5, "time": "08:40:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731487, 43.326561]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559305.7, "northing": 4797339.7, "time": "08:40:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732018, 43.32679]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559348.5, "northing": 4797365.5, "time": "08:41:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732529, 43.327044]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559389.7, "northing": 4797394.0, "time": "08:41:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733036, 43.327303]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559430.5, "northing": 4797423.1, "time": "08:41:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733547, 43.327553]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559471.7, "northing": 4797451.3, "time": "08:42:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734059, 43.327804]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559513.0, "northing": 4797479.5, "time": "08:42:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734574, 43.32805]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559554.5, "northing": 4797507.2, "time": "08:42:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735094, 43.328293]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559596.4, "northing": 4797534.6, "time": "08:42:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735611, 43.328539]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559638.1, "northing": 4797562.3, "time": "08:43:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736116, 43.328798]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559678.8, "northing": 4797591.4, "time": "08:43:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736599, 43.329081]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559717.7, "northing": 4797623.1, "time": "08:43:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737086, 43.329357]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559756.9, "northing": 4797654.1, "time": "08:44:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737577, 43.329631]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559796.4, "northing": 4797684.9, "time": "08:44:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738081, 43.329891]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559837.0, "northing": 4797714.2, "time": "08:44:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73861, 43.330122]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559879.7, "northing": 4797740.2, "time": "08:44:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739125, 43.330371]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559921.2, "northing": 4797768.2, "time": "08:45:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739629, 43.33063]}, "properties": {"category": "real_shot", "line": "0991", "easting": 559961.8, "northing": 4797797.4, "time": "08:45:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740138, 43.330884]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560002.8, "northing": 4797825.9, "time": "08:45:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740665, 43.331118]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560045.3, "northing": 4797852.3, "time": "08:46:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741192, 43.331356]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560087.8, "northing": 4797879.1, "time": "08:46:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741703, 43.331608]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560129.0, "northing": 4797907.5, "time": "08:46:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742206, 43.331868]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560169.5, "northing": 4797936.7, "time": "08:47:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742716, 43.332121]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560210.6, "northing": 4797965.1, "time": "08:47:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74324, 43.332358]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560252.8, "northing": 4797991.8, "time": "08:47:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743757, 43.332605]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560294.5, "northing": 4798019.6, "time": "08:47:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744229, 43.332897]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560332.5, "northing": 4798052.4, "time": "08:48:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744714, 43.333179]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560371.5, "northing": 4798084.1, "time": "08:48:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745219, 43.333435]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560412.2, "northing": 4798112.9, "time": "08:48:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745712, 43.333707]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560451.9, "northing": 4798143.5, "time": "08:49:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74622, 43.333964]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560492.8, "northing": 4798172.4, "time": "08:49:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746743, 43.334201]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560535.0, "northing": 4798199.1, "time": "08:49:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747284, 43.334421]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560578.6, "northing": 4798223.9, "time": "08:49:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747796, 43.334674]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560619.9, "northing": 4798252.4, "time": "08:50:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748292, 43.334942]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560659.8, "northing": 4798282.5, "time": "08:50:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748791, 43.335207]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560700.0, "northing": 4798312.3, "time": "08:50:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749296, 43.335463]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560740.7, "northing": 4798341.1, "time": "08:51:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749805, 43.335718]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560781.7, "northing": 4798369.8, "time": "08:51:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750317, 43.33597]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560822.9, "northing": 4798398.1, "time": "08:51:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750833, 43.336218]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560864.5, "northing": 4798426.0, "time": "08:51:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751325, 43.33649]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560904.1, "northing": 4798456.6, "time": "08:52:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75182, 43.336759]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560944.0, "northing": 4798486.8, "time": "08:52:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752334, 43.337007]}, "properties": {"category": "real_shot", "line": "0991", "easting": 560985.4, "northing": 4798514.7, "time": "08:52:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752839, 43.337265]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561026.1, "northing": 4798543.8, "time": "08:53:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753329, 43.337541]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561065.5, "northing": 4798574.8, "time": "08:53:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753822, 43.33781]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561105.2, "northing": 4798605.0, "time": "08:53:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754316, 43.338082]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561145.0, "northing": 4798635.6, "time": "08:53:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754825, 43.338335]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561186.0, "northing": 4798664.1, "time": "08:54:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755346, 43.338579]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561228.0, "northing": 4798691.5, "time": "08:54:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755848, 43.338838]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561268.4, "northing": 4798720.7, "time": "08:54:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756359, 43.339092]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561309.6, "northing": 4798749.2, "time": "08:55:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756875, 43.339338]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561351.2, "northing": 4798777.0, "time": "08:55:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757392, 43.339584]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561392.8, "northing": 4798804.7, "time": "08:55:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757912, 43.339827]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561434.7, "northing": 4798832.0, "time": "08:55:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758432, 43.340068]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561476.6, "northing": 4798859.2, "time": "08:56:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75896, 43.340302]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561519.2, "northing": 4798885.5, "time": "08:56:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759475, 43.340551]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561560.7, "northing": 4798913.6, "time": "08:56:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759966, 43.340825]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561600.2, "northing": 4798944.4, "time": "08:57:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760468, 43.341089]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561640.6, "northing": 4798974.0, "time": "08:57:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760972, 43.341345]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561681.2, "northing": 4799002.9, "time": "08:57:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761489, 43.341591]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561722.9, "northing": 4799030.6, "time": "08:57:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762004, 43.341839]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561764.4, "northing": 4799058.5, "time": "08:58:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762505, 43.342104]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561804.7, "northing": 4799088.3, "time": "08:58:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763006, 43.342365]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561845.1, "northing": 4799117.6, "time": "08:58:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763522, 43.342612]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561886.6, "northing": 4799145.5, "time": "08:59:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764042, 43.342855]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561928.5, "northing": 4799172.8, "time": "08:59:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764568, 43.343091]}, "properties": {"category": "real_shot", "line": "0991", "easting": 561970.9, "northing": 4799199.4, "time": "08:59:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765062, 43.343359]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562010.7, "northing": 4799229.6, "time": "09:00:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76557, 43.343618]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562051.6, "northing": 4799258.7, "time": "09:00:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766079, 43.343871]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562092.6, "northing": 4799287.2, "time": "09:00:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766576, 43.344137]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562132.6, "northing": 4799317.1, "time": "09:00:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767073, 43.344407]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562172.6, "northing": 4799347.4, "time": "09:01:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767574, 43.344668]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562213.0, "northing": 4799376.8, "time": "09:01:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768092, 43.344911]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562254.7, "northing": 4799404.2, "time": "09:01:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768605, 43.345163]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562296.0, "northing": 4799432.5, "time": "09:02:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769098, 43.345433]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562335.7, "northing": 4799462.9, "time": "09:02:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769598, 43.345698]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562376.0, "northing": 4799492.7, "time": "09:02:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770125, 43.345932]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562418.4, "northing": 4799519.1, "time": "09:02:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770639, 43.346182]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562459.8, "northing": 4799547.2, "time": "09:03:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771149, 43.346435]}, "properties": {"category": "real_shot", "line": "0991", "easting": 562500.9, "northing": 4799575.7, "time": "09:03:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771476, 43.34608]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562527.8, "northing": 4799536.5, "time": "13:22:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77096, 43.34584]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562486.2, "northing": 4799509.5, "time": "13:23:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770492, 43.345544]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562448.6, "northing": 4799476.3, "time": "13:23:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770014, 43.345258]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562410.1, "northing": 4799444.1, "time": "13:23:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769515, 43.344989]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562370.0, "northing": 4799413.9, "time": "13:24:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769011, 43.344729]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562329.4, "northing": 4799384.6, "time": "13:24:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768506, 43.344474]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562288.7, "northing": 4799355.9, "time": "13:24:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76798, 43.344236]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562246.3, "northing": 4799329.1, "time": "13:25:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767467, 43.343986]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562205.0, "northing": 4799301.0, "time": "13:25:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766971, 43.343718]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562165.1, "northing": 4799270.8, "time": "13:25:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766464, 43.343464]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562124.2, "northing": 4799242.3, "time": "13:25:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765938, 43.343227]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562081.8, "northing": 4799215.5, "time": "13:26:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765415, 43.342986]}, "properties": {"category": "real_shot", "line": "0993", "easting": 562039.7, "northing": 4799188.4, "time": "13:26:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764904, 43.342733]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561998.5, "northing": 4799159.9, "time": "13:26:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764403, 43.342472]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561958.2, "northing": 4799130.5, "time": "13:27:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763897, 43.342216]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561917.4, "northing": 4799101.7, "time": "13:27:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763386, 43.341961]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561876.3, "northing": 4799073.1, "time": "13:27:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762881, 43.341703]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561835.6, "northing": 4799044.0, "time": "13:27:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762377, 43.341445]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561795.0, "northing": 4799015.0, "time": "13:28:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761865, 43.341192]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561753.8, "northing": 4798986.5, "time": "13:28:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761354, 43.340939]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561712.6, "northing": 4798958.1, "time": "13:28:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760847, 43.340684]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561671.8, "northing": 4798929.3, "time": "13:29:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760335, 43.340433]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561630.5, "northing": 4798901.1, "time": "13:29:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759827, 43.340179]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561589.6, "northing": 4798872.5, "time": "13:29:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759312, 43.339933]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561548.1, "northing": 4798844.8, "time": "13:29:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758788, 43.339693]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561505.9, "northing": 4798817.8, "time": "13:30:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758298, 43.339416]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561466.4, "northing": 4798786.6, "time": "13:30:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757825, 43.339127]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561428.4, "northing": 4798754.2, "time": "13:30:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757331, 43.338856]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561388.6, "northing": 4798723.7, "time": "13:31:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75681, 43.338614]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561346.6, "northing": 4798696.5, "time": "13:31:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756302, 43.338355]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561305.7, "northing": 4798667.4, "time": "13:31:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755795, 43.338099]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561264.9, "northing": 4798638.6, "time": "13:32:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755272, 43.337863]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561222.7, "northing": 4798612.0, "time": "13:32:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754747, 43.337624]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561180.4, "northing": 4798585.0, "time": "13:32:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754236, 43.337373]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561139.2, "northing": 4798556.8, "time": "13:32:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753733, 43.337113]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561098.7, "northing": 4798527.5, "time": "13:33:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75323, 43.336853]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561058.2, "northing": 4798498.3, "time": "13:33:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75272, 43.3366]}, "properties": {"category": "real_shot", "line": "0993", "easting": 561017.1, "northing": 4798469.8, "time": "13:33:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752196, 43.336359]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560974.9, "northing": 4798442.7, "time": "13:34:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751696, 43.336094]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560934.6, "northing": 4798412.9, "time": "13:34:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7512, 43.335827]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560894.7, "northing": 4798382.9, "time": "13:34:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750683, 43.335584]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560853.0, "northing": 4798355.5, "time": "13:34:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750156, 43.335347]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560810.5, "northing": 4798328.8, "time": "13:35:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749636, 43.335105]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560768.6, "northing": 4798301.6, "time": "13:35:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74913, 43.334849]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560727.8, "northing": 4798272.7, "time": "13:35:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748627, 43.334585]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560687.3, "northing": 4798243.1, "time": "13:36:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748133, 43.334322]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560647.5, "northing": 4798213.5, "time": "13:36:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747621, 43.334065]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560606.3, "northing": 4798184.6, "time": "13:36:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747113, 43.333807]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560565.4, "northing": 4798155.6, "time": "13:36:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746594, 43.333567]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560523.5, "northing": 4798128.5, "time": "13:37:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74607, 43.333326]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560481.3, "northing": 4798101.4, "time": "13:37:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745572, 43.333061]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560441.2, "northing": 4798071.6, "time": "13:37:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745063, 43.332808]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560400.2, "northing": 4798043.1, "time": "13:38:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744545, 43.332565]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560358.4, "northing": 4798015.8, "time": "13:38:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744037, 43.332308]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560317.5, "northing": 4797986.9, "time": "13:38:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743539, 43.332041]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560277.4, "northing": 4797956.9, "time": "13:38:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743051, 43.331764]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560238.1, "northing": 4797925.8, "time": "13:39:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742561, 43.331492]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560198.6, "northing": 4797895.2, "time": "13:39:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74206, 43.331228]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560158.3, "northing": 4797865.5, "time": "13:39:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741557, 43.330967]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560117.8, "northing": 4797836.2, "time": "13:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741041, 43.330722]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560076.2, "northing": 4797808.6, "time": "13:40:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740533, 43.330469]}, "properties": {"category": "real_shot", "line": "0993", "easting": 560035.2, "northing": 4797780.1, "time": "13:40:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740014, 43.330221]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559993.4, "northing": 4797752.2, "time": "13:40:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739503, 43.329969]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559952.2, "northing": 4797723.9, "time": "13:41:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738993, 43.329717]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559911.1, "northing": 4797695.5, "time": "13:41:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73847, 43.329478]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559869.0, "northing": 4797668.6, "time": "13:41:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737935, 43.329254]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559825.8, "northing": 4797643.3, "time": "13:42:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73742, 43.329003]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559784.3, "northing": 4797615.1, "time": "13:42:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736921, 43.328738]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559744.1, "northing": 4797585.3, "time": "13:42:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736434, 43.328462]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559704.9, "northing": 4797554.3, "time": "13:42:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735937, 43.328195]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559664.9, "northing": 4797524.3, "time": "13:43:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735423, 43.327946]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559623.4, "northing": 4797496.3, "time": "13:43:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734921, 43.327681]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559583.0, "northing": 4797466.5, "time": "13:43:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734426, 43.327415]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559543.1, "northing": 4797436.6, "time": "13:44:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733924, 43.327155]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559502.7, "northing": 4797407.3, "time": "13:44:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733412, 43.326906]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559461.4, "northing": 4797379.3, "time": "13:44:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732887, 43.326662]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559419.1, "northing": 4797351.9, "time": "13:44:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732386, 43.326401]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559378.7, "northing": 4797322.5, "time": "13:45:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731881, 43.326145]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559338.0, "northing": 4797293.7, "time": "13:45:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731366, 43.325899]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559296.5, "northing": 4797266.0, "time": "13:45:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730841, 43.325658]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559254.2, "northing": 4797238.9, "time": "13:46:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730325, 43.325412]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559212.6, "northing": 4797211.2, "time": "13:46:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729823, 43.325152]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559172.1, "northing": 4797182.0, "time": "13:46:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729333, 43.324874]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559132.7, "northing": 4797150.8, "time": "13:46:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728853, 43.324591]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559094.0, "northing": 4797119.0, "time": "13:47:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728348, 43.324334]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559053.3, "northing": 4797090.1, "time": "13:47:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727838, 43.324081]}, "properties": {"category": "real_shot", "line": "0993", "easting": 559012.2, "northing": 4797061.6, "time": "13:47:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727324, 43.323833]}, "properties": {"category": "real_shot", "line": "0993", "easting": 558970.8, "northing": 4797033.7, "time": "13:48:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771895, 43.345628]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562562.2, "northing": 4799486.6, "time": "08:10:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77141, 43.345356]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562523.2, "northing": 4799456.1, "time": "08:10:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770884, 43.345127]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562480.8, "northing": 4799430.2, "time": "08:11:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770384, 43.344864]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562440.5, "northing": 4799400.7, "time": "08:11:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769905, 43.344576]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562402.0, "northing": 4799368.3, "time": "08:11:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769398, 43.344322]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562361.2, "northing": 4799339.7, "time": "08:12:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768861, 43.344098]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562317.9, "northing": 4799314.4, "time": "08:12:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768355, 43.343841]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562277.1, "northing": 4799285.5, "time": "08:12:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767846, 43.343585]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562236.1, "northing": 4799256.7, "time": "08:12:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767315, 43.343355]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562193.3, "northing": 4799230.8, "time": "08:13:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766796, 43.343112]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562151.5, "northing": 4799203.4, "time": "08:13:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766277, 43.342866]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562109.7, "northing": 4799175.7, "time": "08:13:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765756, 43.342626]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562067.7, "northing": 4799148.7, "time": "08:14:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765228, 43.342391]}, "properties": {"category": "real_shot", "line": "0995", "easting": 562025.1, "northing": 4799122.2, "time": "08:14:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764693, 43.342164]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561982.0, "northing": 4799096.6, "time": "08:14:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764194, 43.3419]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561941.8, "northing": 4799066.9, "time": "08:14:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763697, 43.341633]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561901.8, "northing": 4799036.8, "time": "08:15:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763194, 43.34137]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561861.3, "northing": 4799007.3, "time": "08:15:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762687, 43.341117]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561820.5, "northing": 4798978.8, "time": "08:15:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762177, 43.340863]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561779.4, "northing": 4798950.2, "time": "08:16:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761663, 43.340613]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561738.0, "northing": 4798922.1, "time": "08:16:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761148, 43.340366]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561696.5, "northing": 4798894.3, "time": "08:16:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760632, 43.340119]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561654.9, "northing": 4798866.5, "time": "08:16:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760113, 43.339875]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561613.1, "northing": 4798839.0, "time": "08:17:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75959, 43.339637]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561570.9, "northing": 4798812.1, "time": "08:17:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759084, 43.339379]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561530.2, "northing": 4798783.1, "time": "08:17:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758596, 43.339103]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561490.9, "northing": 4798752.1, "time": "08:18:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7581, 43.338833]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561451.0, "northing": 4798721.8, "time": "08:18:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757594, 43.338576]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561410.2, "northing": 4798692.9, "time": "08:18:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757104, 43.338301]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561370.8, "northing": 4798661.9, "time": "08:19:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756609, 43.338034]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561330.9, "northing": 4798631.9, "time": "08:19:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756104, 43.337774]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561290.2, "northing": 4798602.7, "time": "08:19:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755584, 43.337533]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561248.3, "northing": 4798575.5, "time": "08:19:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755078, 43.337274]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561207.6, "northing": 4798546.4, "time": "08:20:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754585, 43.337003]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561167.9, "northing": 4798515.9, "time": "08:20:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754085, 43.336739]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561127.6, "northing": 4798486.3, "time": "08:20:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753582, 43.336478]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561087.1, "northing": 4798456.9, "time": "08:21:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753078, 43.336219]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561046.5, "northing": 4798427.8, "time": "08:21:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75257, 43.335963]}, "properties": {"category": "real_shot", "line": "0995", "easting": 561005.6, "northing": 4798399.0, "time": "08:21:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752058, 43.335714]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560964.3, "northing": 4798370.9, "time": "08:21:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751543, 43.335466]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560922.8, "northing": 4798343.0, "time": "08:22:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751026, 43.33522]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560881.2, "northing": 4798315.3, "time": "08:22:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750503, 43.334981]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560839.0, "northing": 4798288.4, "time": "08:22:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750005, 43.334714]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560798.9, "northing": 4798258.4, "time": "08:23:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749505, 43.33445]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560758.6, "northing": 4798228.7, "time": "08:23:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748986, 43.334208]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560716.8, "northing": 4798201.5, "time": "08:23:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74847, 43.33396]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560675.2, "northing": 4798173.6, "time": "08:23:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747973, 43.333693]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560635.2, "northing": 4798143.5, "time": "08:24:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747463, 43.333438]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560594.1, "northing": 4798114.9, "time": "08:24:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746941, 43.333201]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560552.0, "northing": 4798088.1, "time": "08:24:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746433, 43.332944]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560511.1, "northing": 4798059.2, "time": "08:25:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745934, 43.332679]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560470.9, "northing": 4798029.4, "time": "08:25:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745428, 43.332422]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560430.1, "northing": 4798000.5, "time": "08:25:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74491, 43.332177]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560388.4, "northing": 4797973.0, "time": "08:25:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744392, 43.331932]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560346.6, "northing": 4797945.4, "time": "08:26:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743894, 43.331666]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560306.5, "northing": 4797915.5, "time": "08:26:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743398, 43.331398]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560266.6, "northing": 4797885.3, "time": "08:26:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742897, 43.331135]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560226.2, "northing": 4797855.8, "time": "08:27:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742387, 43.330884]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560185.1, "northing": 4797827.5, "time": "08:27:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741864, 43.330643]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560143.0, "northing": 4797800.4, "time": "08:27:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741342, 43.330402]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560100.9, "northing": 4797773.3, "time": "08:27:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740849, 43.330132]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560061.2, "northing": 4797742.9, "time": "08:28:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740348, 43.329869]}, "properties": {"category": "real_shot", "line": "0995", "easting": 560020.8, "northing": 4797713.4, "time": "08:28:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739835, 43.329618]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559979.5, "northing": 4797685.1, "time": "08:28:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739311, 43.329381]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559937.2, "northing": 4797658.4, "time": "08:29:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738803, 43.329125]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559896.3, "northing": 4797629.6, "time": "08:29:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738309, 43.328855]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559856.5, "northing": 4797599.3, "time": "08:29:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737798, 43.328603]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559815.3, "northing": 4797570.9, "time": "08:30:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737281, 43.328358]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559773.7, "northing": 4797543.3, "time": "08:30:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736777, 43.328097]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559733.1, "northing": 4797514.0, "time": "08:30:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736275, 43.327836]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559692.6, "northing": 4797484.7, "time": "08:30:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735771, 43.327578]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559652.0, "northing": 4797455.6, "time": "08:31:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735265, 43.327319]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559611.2, "northing": 4797426.5, "time": "08:31:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734761, 43.32706]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559570.6, "northing": 4797397.4, "time": "08:31:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734256, 43.326802]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559529.9, "northing": 4797368.4, "time": "08:32:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733752, 43.326543]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559489.3, "northing": 4797339.3, "time": "08:32:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733249, 43.326281]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559448.8, "northing": 4797309.8, "time": "08:32:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732744, 43.326023]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559408.1, "northing": 4797280.8, "time": "08:32:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732241, 43.325762]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559367.6, "northing": 4797251.5, "time": "08:33:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731737, 43.325503]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559327.0, "northing": 4797222.3, "time": "08:33:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731236, 43.325241]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559286.6, "northing": 4797192.9, "time": "08:33:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730733, 43.324979]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559246.1, "northing": 4797163.4, "time": "08:34:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730212, 43.324738]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559204.1, "northing": 4797136.3, "time": "08:34:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729689, 43.3245]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559161.9, "northing": 4797109.5, "time": "08:34:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729185, 43.324239]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559121.3, "northing": 4797080.1, "time": "08:34:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728685, 43.323974]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559081.0, "northing": 4797050.4, "time": "08:35:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728176, 43.323722]}, "properties": {"category": "real_shot", "line": "0995", "easting": 559040.0, "northing": 4797022.0, "time": "08:35:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727655, 43.323481]}, "properties": {"category": "real_shot", "line": "0995", "easting": 558998.0, "northing": 4796994.9, "time": "08:35:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.727881, 43.323249]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559016.5, "northing": 4796969.3, "time": "13:51:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728332, 43.323553]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559052.8, "northing": 4797003.4, "time": "13:51:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728841, 43.323808]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559093.8, "northing": 4797032.0, "time": "13:51:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729397, 43.324011]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559138.7, "northing": 4797055.0, "time": "13:52:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730012, 43.324153]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559188.4, "northing": 4797071.2, "time": "13:52:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730517, 43.32441]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559229.1, "northing": 4797100.1, "time": "13:52:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73094, 43.324758]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559263.1, "northing": 4797139.0, "time": "13:53:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731458, 43.325005]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559304.8, "northing": 4797166.8, "time": "13:53:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732028, 43.325188]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559350.9, "northing": 4797187.6, "time": "13:53:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732585, 43.325396]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559395.8, "northing": 4797211.0, "time": "13:54:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733109, 43.325633]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559438.1, "northing": 4797237.7, "time": "13:54:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733616, 43.325891]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559478.9, "northing": 4797266.7, "time": "13:54:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7341, 43.326171]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559517.9, "northing": 4797298.2, "time": "13:55:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734618, 43.326414]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559559.7, "northing": 4797325.6, "time": "13:55:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73515, 43.326642]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559602.6, "northing": 4797351.3, "time": "13:55:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735648, 43.326909]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559642.7, "northing": 4797381.3, "time": "13:56:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736131, 43.327191]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559681.6, "northing": 4797412.9, "time": "13:56:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736616, 43.32747]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559720.6, "northing": 4797444.3, "time": "13:56:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737126, 43.327726]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559761.7, "northing": 4797473.0, "time": "13:57:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737646, 43.327968]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559803.6, "northing": 4797500.3, "time": "13:57:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738159, 43.328217]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559845.0, "northing": 4797528.3, "time": "13:57:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738689, 43.328449]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559887.7, "northing": 4797554.5, "time": "13:58:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739199, 43.328701]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559928.8, "northing": 4797582.8, "time": "13:58:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739664, 43.329003]}, "properties": {"category": "real_shot", "line": "0997", "easting": 559966.2, "northing": 4797616.7, "time": "13:58:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740119, 43.329317]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560002.8, "northing": 4797651.9, "time": "13:59:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740614, 43.329585]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560042.7, "northing": 4797682.0, "time": "13:59:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741139, 43.329819]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560085.0, "northing": 4797708.4, "time": "13:59:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741642, 43.330083]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560125.5, "northing": 4797738.0, "time": "14:00:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742183, 43.330301]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560169.2, "northing": 4797762.6, "time": "14:00:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742738, 43.330507]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560214.0, "northing": 4797785.9, "time": "14:00:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743224, 43.330784]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560253.1, "northing": 4797817.0, "time": "14:01:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743684, 43.331092]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560290.1, "northing": 4797851.6, "time": "14:01:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744163, 43.331381]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560328.6, "northing": 4797884.0, "time": "14:01:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7447, 43.331601]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560371.9, "northing": 4797908.8, "time": "14:02:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745241, 43.331818]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560415.6, "northing": 4797933.3, "time": "14:02:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745765, 43.332061]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560457.8, "northing": 4797960.7, "time": "14:02:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746299, 43.332287]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560500.9, "northing": 4797986.2, "time": "14:03:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746842, 43.332506]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560544.7, "northing": 4798010.9, "time": "14:03:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747356, 43.332756]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560586.1, "northing": 4798039.0, "time": "14:03:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747828, 43.333048]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560624.1, "northing": 4798071.8, "time": "14:04:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748305, 43.333338]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560662.5, "northing": 4798104.4, "time": "14:04:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748811, 43.333594]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560703.2, "northing": 4798133.2, "time": "14:04:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74931, 43.333861]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560743.4, "northing": 4798163.2, "time": "14:05:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749842, 43.334089]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560786.3, "northing": 4798188.9, "time": "14:05:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750375, 43.334318]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560829.3, "northing": 4798214.7, "time": "14:05:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750896, 43.334559]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560871.3, "northing": 4798241.8, "time": "14:06:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751425, 43.334792]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560913.9, "northing": 4798268.1, "time": "14:06:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751919, 43.335064]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560953.7, "northing": 4798298.7, "time": "14:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752414, 43.335331]}, "properties": {"category": "real_shot", "line": "0997", "easting": 560993.6, "northing": 4798328.7, "time": "14:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752915, 43.335594]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561033.9, "northing": 4798358.3, "time": "14:07:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753414, 43.335861]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561074.1, "northing": 4798388.3, "time": "14:07:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753916, 43.336123]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561114.5, "northing": 4798417.7, "time": "14:08:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754421, 43.33638]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561155.2, "northing": 4798446.6, "time": "14:08:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754931, 43.336633]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561196.3, "northing": 4798475.1, "time": "14:08:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755445, 43.336881]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561237.7, "northing": 4798503.0, "time": "14:09:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755935, 43.337156]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561277.2, "northing": 4798533.9, "time": "14:09:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756435, 43.337421]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561317.4, "northing": 4798563.7, "time": "14:09:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756953, 43.337664]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561359.2, "northing": 4798591.1, "time": "14:10:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757454, 43.337928]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561399.5, "northing": 4798620.8, "time": "14:10:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757949, 43.338197]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561439.4, "northing": 4798651.0, "time": "14:10:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758458, 43.338452]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561480.4, "northing": 4798679.7, "time": "14:11:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758967, 43.338705]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561521.4, "northing": 4798708.2, "time": "14:11:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759487, 43.338948]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561563.3, "northing": 4798735.6, "time": "14:11:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760013, 43.339185]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561605.7, "northing": 4798762.3, "time": "14:12:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760549, 43.33941]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561648.9, "northing": 4798787.6, "time": "14:12:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761047, 43.339675]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561689.0, "northing": 4798817.4, "time": "14:12:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761534, 43.339952]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561728.2, "northing": 4798848.6, "time": "14:13:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762025, 43.340228]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561767.7, "northing": 4798879.6, "time": "14:13:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762533, 43.340483]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561808.6, "northing": 4798908.3, "time": "14:13:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763055, 43.340723]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561850.7, "northing": 4798935.3, "time": "14:14:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76356, 43.34098]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561891.4, "northing": 4798964.2, "time": "14:14:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764077, 43.341227]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561933.0, "northing": 4798992.1, "time": "14:14:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764603, 43.341463]}, "properties": {"category": "real_shot", "line": "0997", "easting": 561975.4, "northing": 4799018.7, "time": "14:15:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765103, 43.341726]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562015.7, "northing": 4799048.2, "time": "14:15:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765601, 43.341993]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562055.8, "northing": 4799078.2, "time": "14:15:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766108, 43.342249]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562096.6, "northing": 4799107.1, "time": "14:16:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766625, 43.342496]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562138.3, "northing": 4799134.9, "time": "14:16:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767154, 43.342728]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562180.9, "northing": 4799161.0, "time": "14:16:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76765, 43.342997]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562220.8, "northing": 4799191.3, "time": "14:17:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768139, 43.343271]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562260.2, "northing": 4799222.1, "time": "14:17:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768638, 43.343536]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562300.4, "northing": 4799251.9, "time": "14:17:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769149, 43.343789]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562341.5, "northing": 4799280.4, "time": "14:18:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769669, 43.344032]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562383.4, "northing": 4799307.7, "time": "14:18:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770181, 43.344283]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562424.7, "northing": 4799336.0, "time": "14:18:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770683, 43.344545]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562465.1, "northing": 4799365.5, "time": "14:19:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771201, 43.34479]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562506.8, "northing": 4799393.0, "time": "14:19:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771732, 43.345021]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562549.6, "northing": 4799419.1, "time": "14:19:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772272, 43.345241]}, "properties": {"category": "real_shot", "line": "0997", "easting": 562593.2, "northing": 4799443.9, "time": "14:20:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728399, 43.322692]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559059.1, "northing": 4796907.8, "time": "07:43:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7289, 43.322954]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559099.4, "northing": 4796937.2, "time": "07:43:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729385, 43.32323]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559138.5, "northing": 4796968.2, "time": "07:43:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729879, 43.323501]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559178.3, "northing": 4796998.7, "time": "07:44:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730381, 43.323762]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559218.7, "northing": 4797028.0, "time": "07:44:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730894, 43.324012]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559260.1, "northing": 4797056.1, "time": "07:44:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731409, 43.324259]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559301.6, "northing": 4797083.9, "time": "07:45:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731903, 43.324529]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559341.4, "northing": 4797114.3, "time": "07:45:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732399, 43.3248]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559381.3, "northing": 4797144.7, "time": "07:45:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732889, 43.325072]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559420.8, "northing": 4797175.3, "time": "07:45:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733384, 43.325338]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559460.7, "northing": 4797205.2, "time": "07:46:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733898, 43.32559]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559502.1, "northing": 4797233.5, "time": "07:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734424, 43.325825]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559544.5, "northing": 4797260.0, "time": "07:46:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734955, 43.326058]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559587.3, "northing": 4797286.3, "time": "07:47:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73546, 43.326315]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559628.0, "northing": 4797315.2, "time": "07:47:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73597, 43.32657]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559669.1, "northing": 4797343.8, "time": "07:47:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736477, 43.326824]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559710.0, "northing": 4797372.4, "time": "07:48:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736987, 43.327078]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559751.1, "northing": 4797401.0, "time": "07:48:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737496, 43.327333]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559792.1, "northing": 4797429.7, "time": "07:48:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738008, 43.327583]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559833.4, "northing": 4797457.8, "time": "07:48:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738521, 43.327834]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559874.7, "northing": 4797486.0, "time": "07:49:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739032, 43.328084]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559915.9, "northing": 4797514.2, "time": "07:49:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739552, 43.328329]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559957.8, "northing": 4797541.8, "time": "07:49:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740068, 43.328575]}, "properties": {"category": "real_shot", "line": "0999", "easting": 559999.4, "northing": 4797569.4, "time": "07:50:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740594, 43.32881]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560041.8, "northing": 4797595.9, "time": "07:50:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741099, 43.329068]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560082.5, "northing": 4797624.9, "time": "07:50:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741593, 43.329341]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560122.3, "northing": 4797655.6, "time": "07:50:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742091, 43.329604]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560162.4, "northing": 4797685.2, "time": "07:51:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742596, 43.329862]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560203.1, "northing": 4797714.2, "time": "07:51:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74311, 43.330112]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560244.5, "northing": 4797742.3, "time": "07:51:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743628, 43.330356]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560286.3, "northing": 4797769.8, "time": "07:52:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744119, 43.330629]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560325.8, "northing": 4797800.5, "time": "07:52:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744619, 43.330894]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560366.1, "northing": 4797830.3, "time": "07:52:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745125, 43.331152]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560406.8, "northing": 4797859.3, "time": "07:52:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745644, 43.331394]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560448.7, "northing": 4797886.5, "time": "07:53:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746142, 43.331659]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560488.8, "northing": 4797916.3, "time": "07:53:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746632, 43.331936]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560528.2, "northing": 4797947.4, "time": "07:53:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747128, 43.332204]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560568.2, "northing": 4797977.6, "time": "07:54:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74763, 43.332465]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560608.6, "northing": 4798006.9, "time": "07:54:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748135, 43.332725]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560649.3, "northing": 4798036.1, "time": "07:54:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748644, 43.332979]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560690.3, "northing": 4798064.7, "time": "07:54:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749155, 43.333228]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560731.5, "northing": 4798092.7, "time": "07:55:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749669, 43.333478]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560772.9, "northing": 4798120.9, "time": "07:55:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750191, 43.33372]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560815.0, "northing": 4798148.1, "time": "07:55:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75072, 43.333951]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560857.6, "northing": 4798174.2, "time": "07:56:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751232, 43.334203]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560898.9, "northing": 4798202.5, "time": "07:56:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751735, 43.334464]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560939.4, "northing": 4798231.9, "time": "07:56:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752246, 43.334715]}, "properties": {"category": "real_shot", "line": "0999", "easting": 560980.6, "northing": 4798260.2, "time": "07:57:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752763, 43.334962]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561022.2, "northing": 4798287.9, "time": "07:57:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753293, 43.335192]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561065.0, "northing": 4798313.9, "time": "07:57:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753804, 43.335446]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561106.1, "northing": 4798342.5, "time": "07:57:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754299, 43.335714]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561146.0, "northing": 4798372.6, "time": "07:58:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754791, 43.335988]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561185.6, "northing": 4798403.4, "time": "07:58:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75529, 43.336253]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561225.8, "northing": 4798433.2, "time": "07:58:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755808, 43.336497]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561267.5, "northing": 4798460.6, "time": "07:59:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756302, 43.336765]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561307.3, "northing": 4798490.8, "time": "07:59:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756798, 43.337037]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561347.2, "northing": 4798521.3, "time": "07:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757298, 43.3373]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561387.5, "northing": 4798550.9, "time": "07:59:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757804, 43.337557]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561428.3, "northing": 4798579.8, "time": "08:00:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758315, 43.33781]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561469.4, "northing": 4798608.3, "time": "08:00:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758831, 43.338055]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561511.0, "northing": 4798635.9, "time": "08:00:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759354, 43.338293]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561553.2, "northing": 4798662.7, "time": "08:01:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759866, 43.338545]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561594.4, "northing": 4798691.1, "time": "08:01:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76036, 43.338816]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561634.2, "northing": 4798721.5, "time": "08:01:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760868, 43.339072]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561675.1, "northing": 4798750.3, "time": "08:01:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761379, 43.339321]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561716.3, "northing": 4798778.4, "time": "08:02:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761902, 43.339562]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561758.4, "northing": 4798805.5, "time": "08:02:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762414, 43.339813]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561799.7, "northing": 4798833.8, "time": "08:02:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762915, 43.340076]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561840.0, "northing": 4798863.4, "time": "08:03:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763424, 43.340332]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561881.0, "northing": 4798892.2, "time": "08:03:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763943, 43.340575]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561922.8, "northing": 4798919.5, "time": "08:03:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764455, 43.340825]}, "properties": {"category": "real_shot", "line": "0999", "easting": 561964.1, "northing": 4798947.7, "time": "08:04:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764952, 43.341093]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562004.1, "northing": 4798977.8, "time": "08:04:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765458, 43.341351]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562044.8, "northing": 4799006.8, "time": "08:04:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76598, 43.34159]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562086.9, "northing": 4799033.8, "time": "08:04:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766494, 43.34184]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562128.3, "northing": 4799061.9, "time": "08:05:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766993, 43.342106]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562168.5, "northing": 4799091.8, "time": "08:05:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767496, 43.342365]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562209.0, "northing": 4799121.0, "time": "08:05:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768005, 43.342619]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562250.0, "northing": 4799149.6, "time": "08:06:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768529, 43.342858]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562292.2, "northing": 4799176.5, "time": "08:06:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769041, 43.343109]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562333.5, "northing": 4799204.7, "time": "08:06:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76954, 43.343375]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562373.6, "northing": 4799234.7, "time": "08:06:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770047, 43.34363]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562414.5, "northing": 4799263.4, "time": "08:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770561, 43.343879]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562455.9, "northing": 4799291.4, "time": "08:07:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771087, 43.344113]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562498.3, "northing": 4799317.8, "time": "08:07:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771595, 43.344373]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562539.2, "northing": 4799347.0, "time": "08:08:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772092, 43.344638]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562579.2, "northing": 4799376.8, "time": "08:08:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772607, 43.344887]}, "properties": {"category": "real_shot", "line": "0999", "easting": 562620.7, "northing": 4799404.9, "time": "08:08:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772965, 43.344493]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562650.1, "northing": 4799361.4, "time": "14:22:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77247, 43.344241]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562610.2, "northing": 4799333.0, "time": "14:22:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771902, 43.344042]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562564.4, "northing": 4799310.5, "time": "14:22:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77135, 43.343833]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562519.9, "northing": 4799286.9, "time": "14:23:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770804, 43.343619]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562475.8, "northing": 4799262.7, "time": "14:23:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770338, 43.343322]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562438.4, "northing": 4799229.4, "time": "14:23:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769899, 43.342991]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562403.1, "northing": 4799192.3, "time": "14:24:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769393, 43.342736]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562362.4, "northing": 4799163.6, "time": "14:24:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768831, 43.342537]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562317.0, "northing": 4799141.1, "time": "14:24:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768285, 43.342319]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562273.0, "northing": 4799116.4, "time": "14:25:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767799, 43.342044]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562233.9, "northing": 4799085.5, "time": "14:25:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767325, 43.341752]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562195.8, "northing": 4799052.8, "time": "14:25:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766796, 43.341523]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562153.1, "northing": 4799026.9, "time": "14:26:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766277, 43.341279]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562111.3, "northing": 4798999.5, "time": "14:26:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765766, 43.341023]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562070.1, "northing": 4798970.7, "time": "14:26:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765259, 43.340764]}, "properties": {"category": "real_shot", "line": "1001", "easting": 562029.3, "northing": 4798941.5, "time": "14:27:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764766, 43.340496]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561989.6, "northing": 4798911.4, "time": "14:27:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764263, 43.340232]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561949.1, "northing": 4798881.7, "time": "14:27:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76377, 43.339965]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561909.4, "northing": 4798851.7, "time": "14:27:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763275, 43.339695]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561869.6, "northing": 4798821.3, "time": "14:28:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762783, 43.339423]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561830.0, "northing": 4798790.7, "time": "14:28:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762291, 43.339149]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561790.4, "northing": 4798759.9, "time": "14:28:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761795, 43.338882]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561750.4, "northing": 4798729.9, "time": "14:29:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761276, 43.338639]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561708.6, "northing": 4798702.6, "time": "14:29:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760746, 43.338406]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561665.9, "northing": 4798676.3, "time": "14:29:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760227, 43.338158]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561624.1, "northing": 4798648.4, "time": "14:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759725, 43.337903]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561583.6, "northing": 4798619.7, "time": "14:30:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75921, 43.337654]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561542.1, "northing": 4798591.6, "time": "14:30:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758684, 43.337414]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561499.7, "northing": 4798564.6, "time": "14:31:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758178, 43.337156]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561459.0, "northing": 4798535.6, "time": "14:31:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757669, 43.336907]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561418.0, "northing": 4798507.5, "time": "14:31:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757145, 43.336667]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561375.7, "northing": 4798480.5, "time": "14:32:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756633, 43.336413]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561334.5, "northing": 4798451.9, "time": "14:32:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756138, 43.336145]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561294.6, "northing": 4798421.8, "time": "14:32:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755654, 43.335865]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561255.7, "northing": 4798390.3, "time": "14:33:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75517, 43.335586]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561216.7, "northing": 4798359.0, "time": "14:33:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754678, 43.335311]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561177.1, "northing": 4798328.1, "time": "14:33:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754176, 43.335051]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561136.7, "northing": 4798298.9, "time": "14:33:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753654, 43.334808]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561094.6, "northing": 4798271.5, "time": "14:34:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753152, 43.334547]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561054.2, "northing": 4798242.2, "time": "14:34:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752648, 43.334289]}, "properties": {"category": "real_shot", "line": "1001", "easting": 561013.6, "northing": 4798213.1, "time": "14:34:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752127, 43.334053]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560971.6, "northing": 4798186.5, "time": "14:35:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751607, 43.333806]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560929.7, "northing": 4798158.7, "time": "14:35:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751094, 43.333554]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560888.3, "northing": 4798130.4, "time": "14:35:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75056, 43.333329]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560845.3, "northing": 4798105.0, "time": "14:36:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750042, 43.333084]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560803.5, "northing": 4798077.4, "time": "14:36:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749502, 43.332861]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560760.0, "northing": 4798052.2, "time": "14:36:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748992, 43.332606]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560718.9, "northing": 4798023.6, "time": "14:37:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748516, 43.332319]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560680.6, "northing": 4797991.3, "time": "14:37:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748039, 43.332032]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560642.2, "northing": 4797959.1, "time": "14:37:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747547, 43.331757]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560602.6, "northing": 4797928.2, "time": "14:38:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747018, 43.331525]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560559.9, "northing": 4797902.1, "time": "14:38:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746478, 43.331302]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560516.4, "northing": 4797876.9, "time": "14:38:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745948, 43.331074]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560473.6, "northing": 4797851.2, "time": "14:39:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745439, 43.330815]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560432.6, "northing": 4797822.1, "time": "14:39:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744946, 43.330548]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560392.9, "northing": 4797792.1, "time": "14:39:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744448, 43.330278]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560352.8, "northing": 4797761.7, "time": "14:40:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743952, 43.330013]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560312.9, "northing": 4797731.9, "time": "14:40:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743456, 43.329746]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560272.9, "northing": 4797701.9, "time": "14:40:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742958, 43.32948]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560232.8, "northing": 4797672.0, "time": "14:41:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742462, 43.329212]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560192.9, "northing": 4797641.9, "time": "14:41:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741945, 43.328966]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560151.2, "northing": 4797614.2, "time": "14:41:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741423, 43.328725]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560109.1, "northing": 4797587.1, "time": "14:42:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740867, 43.328521]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560064.2, "northing": 4797564.0, "time": "14:42:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740333, 43.328287]}, "properties": {"category": "real_shot", "line": "1001", "easting": 560021.2, "northing": 4797537.7, "time": "14:42:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739808, 43.328054]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559978.8, "northing": 4797511.4, "time": "14:43:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739304, 43.327795]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559938.2, "northing": 4797482.3, "time": "14:43:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738835, 43.327499]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559900.5, "northing": 4797449.1, "time": "14:43:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738393, 43.32718]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559865.0, "northing": 4797413.3, "time": "14:44:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737917, 43.326883]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559826.7, "northing": 4797380.0, "time": "14:44:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73737, 43.326672]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559782.5, "northing": 4797356.2, "time": "14:44:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736822, 43.326455]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559738.3, "northing": 4797331.7, "time": "14:45:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736306, 43.326212]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559696.7, "northing": 4797304.3, "time": "14:45:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735785, 43.32597]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559654.7, "northing": 4797277.1, "time": "14:45:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735286, 43.325703]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559614.5, "northing": 4797247.1, "time": "14:46:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734823, 43.325403]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559577.3, "northing": 4797213.4, "time": "14:46:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734377, 43.325082]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559541.4, "northing": 4797177.5, "time": "14:46:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733837, 43.324862]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559497.9, "northing": 4797152.6, "time": "14:47:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733288, 43.324644]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559453.6, "northing": 4797128.0, "time": "14:47:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732743, 43.324434]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559409.6, "northing": 4797104.3, "time": "14:47:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732225, 43.324185]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559367.8, "northing": 4797076.3, "time": "14:48:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731742, 43.323904]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559328.9, "northing": 4797044.8, "time": "14:48:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731271, 43.323613]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559291.0, "northing": 4797012.1, "time": "14:48:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730781, 43.32334]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559251.6, "northing": 4796981.4, "time": "14:49:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730245, 43.323113]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559208.3, "northing": 4796955.8, "time": "14:49:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729712, 43.322882]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559165.3, "northing": 4796929.8, "time": "14:49:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729202, 43.322626]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559124.2, "northing": 4796901.0, "time": "14:50:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.728717, 43.32235]}, "properties": {"category": "real_shot", "line": "1001", "easting": 559085.2, "northing": 4796870.0, "time": "14:50:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729077, 43.32197]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559114.7, "northing": 4796828.1, "time": "11:07:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729574, 43.322234]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559154.8, "northing": 4796857.8, "time": "11:07:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730089, 43.322482]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559196.3, "northing": 4796885.7, "time": "11:07:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730583, 43.322753]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559236.1, "northing": 4796916.1, "time": "11:08:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731081, 43.323019]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559276.2, "northing": 4796946.0, "time": "11:08:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731595, 43.323268]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559317.6, "northing": 4796974.0, "time": "11:08:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732111, 43.323515]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559359.2, "northing": 4797001.8, "time": "11:09:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732613, 43.323776]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559399.7, "northing": 4797031.2, "time": "11:09:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733129, 43.324023]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559441.3, "northing": 4797059.0, "time": "11:09:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73365, 43.324265]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559483.3, "northing": 4797086.2, "time": "11:10:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734167, 43.324509]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559525.0, "northing": 4797113.7, "time": "11:10:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734664, 43.324778]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559565.0, "northing": 4797143.9, "time": "11:10:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735175, 43.32503]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559606.2, "northing": 4797172.2, "time": "11:11:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735694, 43.325272]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559648.0, "northing": 4797199.5, "time": "11:11:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73622, 43.32551]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559690.4, "northing": 4797226.3, "time": "11:11:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736722, 43.32577]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559730.9, "northing": 4797255.5, "time": "11:12:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737225, 43.326032]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559771.4, "northing": 4797285.0, "time": "11:12:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73773, 43.326289]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559812.1, "northing": 4797313.9, "time": "11:12:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738239, 43.326544]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559853.1, "northing": 4797342.6, "time": "11:13:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738743, 43.326803]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559893.7, "northing": 4797371.7, "time": "11:13:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739253, 43.327055]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559934.8, "northing": 4797400.1, "time": "11:13:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739763, 43.327311]}, "properties": {"category": "real_shot", "line": "1003", "easting": 559975.9, "northing": 4797428.8, "time": "11:13:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740278, 43.327558]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560017.4, "northing": 4797456.7, "time": "11:14:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740793, 43.327805]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560058.9, "northing": 4797484.4, "time": "11:14:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741305, 43.328057]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560100.2, "northing": 4797512.8, "time": "11:14:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741816, 43.328308]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560141.4, "northing": 4797541.1, "time": "11:15:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742338, 43.328546]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560183.5, "northing": 4797567.9, "time": "11:15:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742833, 43.328818]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560223.3, "northing": 4797598.4, "time": "11:15:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743331, 43.329085]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560263.4, "northing": 4797628.4, "time": "11:16:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743838, 43.32934]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560304.3, "northing": 4797657.1, "time": "11:16:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744346, 43.329594]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560345.2, "northing": 4797685.7, "time": "11:16:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744853, 43.329851]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560386.1, "northing": 4797714.6, "time": "11:17:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745359, 43.33011]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560426.8, "northing": 4797743.7, "time": "11:17:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745862, 43.330369]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560467.4, "northing": 4797772.8, "time": "11:17:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746364, 43.330633]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560507.8, "northing": 4797802.5, "time": "11:18:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746877, 43.330882]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560549.1, "northing": 4797830.6, "time": "11:18:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74739, 43.33113]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560590.5, "northing": 4797858.5, "time": "11:18:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747908, 43.331376]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560632.2, "northing": 4797886.2, "time": "11:19:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748391, 43.331657]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560671.1, "northing": 4797917.7, "time": "11:19:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748893, 43.331921]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560711.5, "northing": 4797947.4, "time": "11:19:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749399, 43.332176]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560752.3, "northing": 4797976.1, "time": "11:19:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749893, 43.332448]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560792.1, "northing": 4798006.7, "time": "11:20:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750401, 43.332702]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560833.0, "northing": 4798035.2, "time": "11:20:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750899, 43.332968]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560873.1, "northing": 4798065.2, "time": "11:20:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751403, 43.333229]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560913.7, "northing": 4798094.5, "time": "11:21:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751917, 43.333478]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560955.1, "northing": 4798122.5, "time": "11:21:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752444, 43.333711]}, "properties": {"category": "real_shot", "line": "1003", "easting": 560997.6, "northing": 4798148.8, "time": "11:21:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752949, 43.33397]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561038.3, "northing": 4798177.9, "time": "11:22:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753459, 43.334223]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561079.4, "northing": 4798206.4, "time": "11:22:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753973, 43.334473]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561120.8, "northing": 4798234.5, "time": "11:22:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754492, 43.334715]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561162.6, "northing": 4798261.8, "time": "11:23:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754997, 43.334973]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561203.3, "northing": 4798290.8, "time": "11:23:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755494, 43.335242]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561243.3, "northing": 4798321.1, "time": "11:23:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755992, 43.335508]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561283.4, "northing": 4798351.0, "time": "11:23:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756503, 43.335758]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561324.6, "northing": 4798379.1, "time": "11:24:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75702, 43.336005]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561366.3, "northing": 4798406.9, "time": "11:24:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757541, 43.336245]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561408.3, "northing": 4798433.9, "time": "11:24:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758033, 43.336517]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561447.9, "northing": 4798464.5, "time": "11:25:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758529, 43.336789]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561487.8, "northing": 4798495.1, "time": "11:25:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759043, 43.337036]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561529.2, "northing": 4798522.9, "time": "11:25:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759542, 43.337299]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561569.4, "northing": 4798552.5, "time": "11:26:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760038, 43.337572]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561609.3, "northing": 4798583.1, "time": "11:26:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760551, 43.337818]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561650.7, "northing": 4798610.9, "time": "11:26:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761046, 43.338087]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561690.5, "northing": 4798641.1, "time": "11:27:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761549, 43.33835]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561731.0, "northing": 4798670.7, "time": "11:27:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76207, 43.33859]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561773.0, "northing": 4798697.7, "time": "11:27:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762581, 43.338842]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561814.2, "northing": 4798726.1, "time": "11:28:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763083, 43.339105]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561854.6, "northing": 4798755.7, "time": "11:28:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763591, 43.33936]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561895.5, "northing": 4798784.3, "time": "11:28:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764089, 43.339624]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561935.6, "northing": 4798814.0, "time": "11:28:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764589, 43.339891]}, "properties": {"category": "real_shot", "line": "1003", "easting": 561975.9, "northing": 4798844.1, "time": "11:29:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765091, 43.340152]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562016.3, "northing": 4798873.4, "time": "11:29:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765607, 43.3404]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562057.9, "northing": 4798901.3, "time": "11:29:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766134, 43.340632]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562100.4, "northing": 4798927.5, "time": "11:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766656, 43.340873]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562142.4, "northing": 4798954.6, "time": "11:30:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767156, 43.341138]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562182.7, "northing": 4798984.4, "time": "11:30:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767663, 43.341393]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562223.5, "northing": 4799013.2, "time": "11:31:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768161, 43.341659]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562263.6, "northing": 4799043.1, "time": "11:31:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768659, 43.341928]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562303.7, "northing": 4799073.3, "time": "11:31:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769168, 43.34218]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562344.7, "northing": 4799101.7, "time": "11:32:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769692, 43.342418]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562386.9, "northing": 4799128.5, "time": "11:32:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77021, 43.342662]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562428.7, "northing": 4799156.0, "time": "11:32:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770704, 43.342935]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562468.4, "northing": 4799186.7, "time": "11:32:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771199, 43.343203]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562508.3, "northing": 4799216.8, "time": "11:33:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771716, 43.34345]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562549.9, "northing": 4799244.6, "time": "11:33:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772221, 43.343708]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562590.6, "northing": 4799273.6, "time": "11:33:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772723, 43.343969]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562631.0, "northing": 4799303.0, "time": "11:34:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773232, 43.344224]}, "properties": {"category": "real_shot", "line": "1003", "easting": 562672.0, "northing": 4799331.7, "time": "11:34:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729331, 43.321704]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559135.6, "northing": 4796798.7, "time": "14:53:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.729858, 43.321942]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559178.1, "northing": 4796825.5, "time": "14:53:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73044, 43.322119]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559225.1, "northing": 4796845.6, "time": "14:53:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730997, 43.322315]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559270.1, "northing": 4796867.8, "time": "14:54:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731502, 43.32257]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559310.8, "northing": 4796896.4, "time": "14:54:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731973, 43.322865]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559348.7, "northing": 4796929.5, "time": "14:54:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73246, 43.323147]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559387.9, "northing": 4796961.2, "time": "14:55:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732975, 43.32339]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559429.4, "northing": 4796988.6, "time": "14:55:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733476, 43.323651]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559469.8, "northing": 4797017.9, "time": "14:55:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733972, 43.323922]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559509.7, "northing": 4797048.3, "time": "14:56:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734472, 43.324185]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559550.0, "northing": 4797077.9, "time": "14:56:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734975, 43.324446]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559590.5, "northing": 4797107.3, "time": "14:56:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735482, 43.324703]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559631.4, "northing": 4797136.1, "time": "14:57:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736007, 43.32494]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559673.7, "northing": 4797162.8, "time": "14:57:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736556, 43.32515]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559718.0, "northing": 4797186.6, "time": "14:57:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737085, 43.325384]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559760.7, "northing": 4797212.9, "time": "14:58:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737533, 43.3257]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559796.7, "northing": 4797248.3, "time": "14:58:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738037, 43.325964]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559837.3, "northing": 4797278.0, "time": "14:58:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738563, 43.3262]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559879.7, "northing": 4797304.6, "time": "14:59:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739117, 43.326404]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559924.4, "northing": 4797327.7, "time": "14:59:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739601, 43.326683]}, "properties": {"category": "real_shot", "line": "1005", "easting": 559963.4, "northing": 4797359.0, "time": "14:59:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740099, 43.326952]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560003.5, "northing": 4797389.2, "time": "15:00:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740632, 43.327181]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560046.5, "northing": 4797415.0, "time": "15:00:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741131, 43.327444]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560086.7, "northing": 4797444.6, "time": "15:00:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741594, 43.327746]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560123.9, "northing": 4797478.5, "time": "15:01:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74205, 43.328061]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560160.6, "northing": 4797513.8, "time": "15:01:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742569, 43.328303]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560202.4, "northing": 4797541.0, "time": "15:01:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743163, 43.328465]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560250.4, "northing": 4797559.4, "time": "15:02:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743712, 43.328679]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560294.7, "northing": 4797583.6, "time": "15:02:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744185, 43.328968]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560332.8, "northing": 4797616.1, "time": "15:02:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744644, 43.329278]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560369.7, "northing": 4797650.8, "time": "15:03:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74513, 43.329557]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560408.8, "northing": 4797682.2, "time": "15:03:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745673, 43.329775]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560452.6, "northing": 4797706.7, "time": "15:03:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746212, 43.329995]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560496.1, "northing": 4797731.6, "time": "15:04:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746695, 43.330277]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560535.0, "northing": 4797763.2, "time": "15:04:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747185, 43.330554]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560574.4, "northing": 4797794.4, "time": "15:04:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747706, 43.330794]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560616.4, "northing": 4797821.4, "time": "15:05:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748196, 43.331068]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560655.9, "northing": 4797852.2, "time": "15:05:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74871, 43.331316]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560697.3, "northing": 4797880.1, "time": "15:05:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749202, 43.33159]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560736.9, "northing": 4797910.9, "time": "15:06:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749696, 43.331861]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560776.7, "northing": 4797941.3, "time": "15:06:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750205, 43.332115]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560817.7, "northing": 4797969.9, "time": "15:06:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750737, 43.332344]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560860.6, "northing": 4797995.7, "time": "15:07:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751241, 43.332602]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560901.2, "northing": 4798024.7, "time": "15:07:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75176, 43.332848]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560943.0, "northing": 4798052.4, "time": "15:07:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75229, 43.333077]}, "properties": {"category": "real_shot", "line": "1005", "easting": 560985.8, "northing": 4798078.3, "time": "15:08:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7528, 43.333332]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561026.9, "northing": 4798107.0, "time": "15:08:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753313, 43.333582]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561068.2, "northing": 4798135.1, "time": "15:08:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753824, 43.333834]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561109.4, "northing": 4798163.5, "time": "15:09:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754341, 43.33408]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561151.0, "northing": 4798191.2, "time": "15:09:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754829, 43.334355]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561190.3, "northing": 4798222.1, "time": "15:09:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755279, 43.334675]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561226.5, "northing": 4798257.9, "time": "15:10:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755777, 43.334941]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561266.6, "northing": 4798287.8, "time": "15:10:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756303, 43.335175]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561309.0, "northing": 4798314.2, "time": "15:10:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756816, 43.335426]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561350.3, "northing": 4798342.4, "time": "15:11:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757313, 43.335692]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561390.3, "northing": 4798372.4, "time": "15:11:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757803, 43.335967]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561429.8, "northing": 4798403.3, "time": "15:11:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758363, 43.336165]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561475.0, "northing": 4798425.7, "time": "15:11:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758951, 43.336338]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561522.5, "northing": 4798445.3, "time": "15:12:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759462, 43.336591]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561563.6, "northing": 4798473.8, "time": "15:12:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759944, 43.336873]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561602.4, "northing": 4798505.4, "time": "15:12:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760411, 43.337173]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561640.0, "northing": 4798539.1, "time": "15:13:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760917, 43.33743]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561680.7, "northing": 4798568.0, "time": "15:13:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761416, 43.337695]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561720.9, "northing": 4798597.8, "time": "15:13:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761932, 43.337941]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561762.5, "northing": 4798625.5, "time": "15:14:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762476, 43.338158]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561806.4, "northing": 4798650.0, "time": "15:14:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762987, 43.338409]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561847.5, "northing": 4798678.3, "time": "15:14:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763463, 43.3387]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561885.8, "northing": 4798710.9, "time": "15:15:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763938, 43.338991]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561924.0, "northing": 4798743.6, "time": "15:15:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764434, 43.339259]}, "properties": {"category": "real_shot", "line": "1005", "easting": 561964.0, "northing": 4798773.8, "time": "15:15:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764979, 43.339475]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562007.9, "northing": 4798798.1, "time": "15:16:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765519, 43.339695]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562051.5, "northing": 4798823.0, "time": "15:16:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765997, 43.339982]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562089.9, "northing": 4798855.2, "time": "15:16:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766467, 43.34028]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562127.7, "northing": 4798888.7, "time": "15:17:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766981, 43.340528]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562169.1, "northing": 4798916.6, "time": "15:17:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767531, 43.340737]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562213.5, "northing": 4798940.2, "time": "15:17:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76809, 43.34094]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562258.6, "northing": 4798963.2, "time": "15:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768566, 43.341228]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562296.9, "northing": 4798995.5, "time": "15:18:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769078, 43.341482]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562338.1, "northing": 4799024.1, "time": "15:18:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769594, 43.341725]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562379.7, "northing": 4799051.5, "time": "15:19:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770094, 43.34199]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562420.0, "northing": 4799081.3, "time": "15:19:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770579, 43.342272]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562459.0, "northing": 4799113.0, "time": "15:19:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77108, 43.342533]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562499.3, "northing": 4799142.3, "time": "15:19:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771607, 43.342767]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562541.8, "northing": 4799168.7, "time": "15:20:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772101, 43.343038]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562581.6, "northing": 4799199.1, "time": "15:20:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772569, 43.343335]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562619.2, "northing": 4799232.5, "time": "15:20:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773034, 43.343639]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562656.6, "northing": 4799266.6, "time": "15:21:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77359, 43.343842]}, "properties": {"category": "real_shot", "line": "1005", "easting": 562701.4, "northing": 4799289.6, "time": "15:21:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773979, 43.343426]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562733.4, "northing": 4799243.7, "time": "11:38:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773493, 43.343149]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562694.3, "northing": 4799212.5, "time": "11:38:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772976, 43.342905]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562652.6, "northing": 4799185.0, "time": "11:38:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772459, 43.342655]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562611.0, "northing": 4799156.9, "time": "11:39:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77196, 43.342391]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562570.8, "northing": 4799127.2, "time": "11:39:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771456, 43.342132]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562530.2, "northing": 4799098.0, "time": "11:39:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770938, 43.341887]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562488.5, "northing": 4799070.5, "time": "11:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770435, 43.341625]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562448.0, "northing": 4799041.0, "time": "11:40:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769938, 43.341359]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562408.0, "northing": 4799011.1, "time": "11:40:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769431, 43.341104]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562367.1, "northing": 4798982.4, "time": "11:41:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768916, 43.340856]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562325.6, "northing": 4798954.5, "time": "11:41:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768387, 43.340622]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562283.0, "northing": 4798928.1, "time": "11:41:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767883, 43.340361]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562242.4, "northing": 4798898.7, "time": "11:41:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767401, 43.340079]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562203.6, "northing": 4798867.0, "time": "11:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7669, 43.339819]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562163.3, "northing": 4798837.8, "time": "11:42:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766384, 43.339572]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562121.7, "northing": 4798810.0, "time": "11:42:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765872, 43.339316]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562080.5, "northing": 4798781.2, "time": "11:43:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765366, 43.33906]}, "properties": {"category": "real_shot", "line": "1007", "easting": 562039.7, "northing": 4798752.4, "time": "11:43:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764857, 43.338806]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561998.7, "northing": 4798723.8, "time": "11:43:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764353, 43.338547]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561958.1, "northing": 4798694.6, "time": "11:44:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763845, 43.338293]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561917.2, "northing": 4798666.0, "time": "11:44:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763331, 43.338043]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561875.8, "northing": 4798637.9, "time": "11:44:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762804, 43.33781]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561833.3, "northing": 4798611.6, "time": "11:45:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7623, 43.337548]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561792.7, "northing": 4798582.2, "time": "11:45:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761808, 43.337276]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561753.1, "northing": 4798551.6, "time": "11:45:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761293, 43.337028]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561711.6, "northing": 4798523.7, "time": "11:45:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76078, 43.336778]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561670.3, "northing": 4798495.5, "time": "11:46:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76028, 43.336513]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561630.0, "northing": 4798465.7, "time": "11:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759773, 43.336257]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561589.2, "northing": 4798436.9, "time": "11:46:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759245, 43.336025]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561546.6, "northing": 4798410.8, "time": "11:47:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758744, 43.33576]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561506.3, "northing": 4798381.0, "time": "11:47:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758244, 43.335496]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561466.0, "northing": 4798351.3, "time": "11:47:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757739, 43.335241]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561425.3, "northing": 4798322.6, "time": "11:48:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757236, 43.334979]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561384.8, "northing": 4798293.1, "time": "11:48:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756732, 43.33472]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561344.2, "northing": 4798264.0, "time": "11:48:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756212, 43.334474]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561302.3, "northing": 4798236.3, "time": "11:48:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755701, 43.334227]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561261.1, "northing": 4798208.5, "time": "11:49:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755189, 43.33397]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561219.9, "northing": 4798179.6, "time": "11:49:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75468, 43.333717]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561178.9, "northing": 4798151.1, "time": "11:49:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75418, 43.333457]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561138.6, "northing": 4798121.8, "time": "11:50:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753667, 43.333204]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561097.3, "northing": 4798093.4, "time": "11:50:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75315, 43.332958]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561055.6, "northing": 4798065.7, "time": "11:50:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752647, 43.332697]}, "properties": {"category": "real_shot", "line": "1007", "easting": 561015.1, "northing": 4798036.3, "time": "11:51:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752153, 43.332431]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560975.3, "northing": 4798006.4, "time": "11:51:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751631, 43.332188]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560933.2, "northing": 4797979.1, "time": "11:51:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751119, 43.331935]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560892.0, "northing": 4797950.6, "time": "11:52:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750619, 43.331673]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560851.7, "northing": 4797921.1, "time": "11:52:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750108, 43.331421]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560810.5, "northing": 4797892.8, "time": "11:52:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74959, 43.331176]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560768.8, "northing": 4797865.2, "time": "11:53:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749072, 43.330932]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560727.0, "northing": 4797837.7, "time": "11:53:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748576, 43.330662]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560687.1, "northing": 4797807.4, "time": "11:53:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748077, 43.330398]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560646.9, "northing": 4797777.7, "time": "11:53:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747573, 43.33014]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560606.3, "northing": 4797748.7, "time": "11:54:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747057, 43.329892]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560564.7, "northing": 4797720.7, "time": "11:54:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746547, 43.329638]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560523.6, "northing": 4797692.2, "time": "11:54:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746037, 43.329388]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560482.5, "northing": 4797664.0, "time": "11:55:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745517, 43.329145]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560440.6, "northing": 4797636.7, "time": "11:55:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745014, 43.328882]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560400.1, "northing": 4797607.1, "time": "11:55:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744511, 43.328618]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560359.6, "northing": 4797577.4, "time": "11:56:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744021, 43.328347]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560320.1, "northing": 4797547.0, "time": "11:56:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743518, 43.328088]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560279.6, "northing": 4797517.8, "time": "11:56:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743001, 43.327841]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560237.9, "northing": 4797490.0, "time": "11:57:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742507, 43.327571]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560198.1, "northing": 4797459.7, "time": "11:57:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742009, 43.327307]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560158.0, "northing": 4797430.0, "time": "11:57:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741498, 43.327054]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560116.8, "northing": 4797401.6, "time": "11:57:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740997, 43.326788]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560076.5, "northing": 4797371.6, "time": "11:58:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740499, 43.326527]}, "properties": {"category": "real_shot", "line": "1007", "easting": 560036.4, "northing": 4797342.3, "time": "11:58:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739983, 43.32628]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559994.8, "northing": 4797314.5, "time": "11:58:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739487, 43.326007]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559954.8, "northing": 4797283.8, "time": "11:59:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738983, 43.32575]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559914.2, "northing": 4797254.9, "time": "11:59:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738477, 43.325495]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559873.4, "northing": 4797226.3, "time": "11:59:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737965, 43.325243]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559832.2, "northing": 4797197.9, "time": "12:00:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737469, 43.324977]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559792.2, "northing": 4797168.0, "time": "12:00:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73695, 43.324728]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559750.4, "northing": 4797140.0, "time": "12:00:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736432, 43.324488]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559708.6, "northing": 4797112.9, "time": "12:00:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735902, 43.324256]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559665.9, "northing": 4797086.8, "time": "12:01:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735389, 43.324003]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559624.5, "northing": 4797058.4, "time": "12:01:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734876, 43.323756]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559583.2, "northing": 4797030.6, "time": "12:01:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73436, 43.323505]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559541.6, "northing": 4797002.3, "time": "12:02:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733844, 43.32326]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559500.0, "northing": 4796974.7, "time": "12:02:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733351, 43.322994]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559460.3, "northing": 4796944.8, "time": "12:02:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73285, 43.322724]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559419.9, "northing": 4796914.5, "time": "12:03:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732353, 43.322458]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559379.9, "northing": 4796884.6, "time": "12:03:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73184, 43.32221]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559338.5, "northing": 4796856.7, "time": "12:03:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731337, 43.321951]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559298.0, "northing": 4796827.6, "time": "12:04:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730827, 43.321696]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559256.9, "northing": 4796798.9, "time": "12:04:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730316, 43.321445]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559215.7, "northing": 4796770.7, "time": "12:04:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7298, 43.321198]}, "properties": {"category": "real_shot", "line": "1007", "easting": 559174.1, "northing": 4796742.9, "time": "12:04:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774346, 43.343029]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562763.5, "northing": 4799199.8, "time": "15:23:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773837, 43.342785]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562722.5, "northing": 4799172.4, "time": "15:24:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773319, 43.342532]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562680.8, "northing": 4799143.9, "time": "15:24:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772806, 43.342287]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562639.5, "northing": 4799116.3, "time": "15:24:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77227, 43.34206]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562596.3, "northing": 4799090.7, "time": "15:25:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771752, 43.341821]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562554.5, "northing": 4799063.7, "time": "15:25:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77125, 43.341553]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562514.1, "northing": 4799033.6, "time": "15:25:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770766, 43.341274]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562475.2, "northing": 4799002.3, "time": "15:26:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770261, 43.341019]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562434.5, "northing": 4798973.6, "time": "15:26:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769736, 43.340782]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562392.2, "northing": 4798946.8, "time": "15:26:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769226, 43.340522]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562351.1, "northing": 4798917.6, "time": "15:26:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768718, 43.340272]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562310.2, "northing": 4798889.4, "time": "15:27:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768192, 43.340033]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562267.8, "northing": 4798862.5, "time": "15:27:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76769, 43.339772]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562227.4, "northing": 4798833.2, "time": "15:27:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767195, 43.339504]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562187.5, "northing": 4798803.0, "time": "15:28:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766703, 43.339229]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562147.9, "northing": 4798772.1, "time": "15:28:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76621, 43.338961]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562108.2, "northing": 4798742.0, "time": "15:28:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765707, 43.338699]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562067.7, "northing": 4798712.5, "time": "15:29:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765204, 43.338442]}, "properties": {"category": "real_shot", "line": "1009", "easting": 562027.2, "northing": 4798683.6, "time": "15:29:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764688, 43.338193]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561985.6, "northing": 4798655.6, "time": "15:29:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764163, 43.337956]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561943.3, "northing": 4798628.8, "time": "15:29:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763628, 43.33773]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561900.2, "northing": 4798603.4, "time": "15:30:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763118, 43.337471]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561859.1, "northing": 4798574.2, "time": "15:30:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762619, 43.337209]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561818.9, "northing": 4798544.7, "time": "15:30:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762122, 43.336944]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561778.9, "northing": 4798514.9, "time": "15:31:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76163, 43.336669]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561739.3, "northing": 4798484.0, "time": "15:31:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761143, 43.336392]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561700.1, "northing": 4798452.9, "time": "15:31:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760655, 43.336117]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561660.8, "northing": 4798422.0, "time": "15:32:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760136, 43.335871]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561619.0, "northing": 4798394.3, "time": "15:32:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759587, 43.335661]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561574.7, "northing": 4798370.6, "time": "15:32:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759066, 43.33542]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561532.7, "northing": 4798343.4, "time": "15:33:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758567, 43.335155]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561492.5, "northing": 4798313.6, "time": "15:33:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758045, 43.334914]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561450.5, "northing": 4798286.5, "time": "15:33:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757522, 43.334672]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561408.3, "northing": 4798259.2, "time": "15:33:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757012, 43.334424]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561367.2, "northing": 4798231.3, "time": "15:34:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756502, 43.334171]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561326.1, "northing": 4798202.9, "time": "15:34:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756021, 43.333886]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561287.4, "northing": 4798170.8, "time": "15:34:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755557, 43.33358]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561250.1, "northing": 4798136.5, "time": "15:35:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755084, 43.33329]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561212.1, "northing": 4798104.0, "time": "15:35:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754551, 43.333061]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561169.1, "northing": 4798078.2, "time": "15:35:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754008, 43.332844]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561125.3, "northing": 4798053.6, "time": "15:36:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753444, 43.332643]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561079.8, "northing": 4798030.9, "time": "15:36:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752938, 43.33239]}, "properties": {"category": "real_shot", "line": "1009", "easting": 561039.0, "northing": 4798002.4, "time": "15:36:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752451, 43.332115]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560999.8, "northing": 4797971.5, "time": "15:36:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75195, 43.331853]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560959.4, "northing": 4797942.1, "time": "15:37:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751426, 43.331609]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560917.2, "northing": 4797914.6, "time": "15:37:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750943, 43.331328]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560878.3, "northing": 4797883.0, "time": "15:37:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750461, 43.33105]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560839.5, "northing": 4797851.8, "time": "15:38:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749963, 43.330776]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560799.4, "northing": 4797821.0, "time": "15:38:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749471, 43.330506]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560759.8, "northing": 4797790.7, "time": "15:38:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748955, 43.330258]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560718.2, "northing": 4797762.8, "time": "15:39:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748406, 43.330052]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560673.9, "northing": 4797739.5, "time": "15:39:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747874, 43.32982]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560631.0, "northing": 4797713.3, "time": "15:39:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747394, 43.329533]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560592.4, "northing": 4797681.1, "time": "15:40:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746908, 43.329254]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560553.3, "northing": 4797649.8, "time": "15:40:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746369, 43.329034]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560509.8, "northing": 4797625.0, "time": "15:40:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745801, 43.328844]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560463.9, "northing": 4797603.5, "time": "15:40:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745266, 43.328615]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560420.8, "northing": 4797577.6, "time": "15:41:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744793, 43.328326]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560382.7, "northing": 4797545.2, "time": "15:41:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744317, 43.328032]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560344.4, "northing": 4797512.2, "time": "15:41:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743846, 43.327742]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560306.5, "northing": 4797479.6, "time": "15:42:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743376, 43.327444]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560268.7, "northing": 4797446.2, "time": "15:42:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742862, 43.327197]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560227.3, "northing": 4797418.4, "time": "15:42:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742324, 43.326972]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560183.9, "northing": 4797393.0, "time": "15:43:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741779, 43.326755]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560139.9, "northing": 4797368.6, "time": "15:43:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741253, 43.326517]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560097.5, "northing": 4797341.7, "time": "15:43:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740751, 43.326254]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560057.1, "northing": 4797312.2, "time": "15:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740257, 43.325988]}, "properties": {"category": "real_shot", "line": "1009", "easting": 560017.3, "northing": 4797282.3, "time": "15:44:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739779, 43.325701]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559978.8, "northing": 4797250.1, "time": "15:44:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739285, 43.325428]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559939.0, "northing": 4797219.4, "time": "15:44:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738759, 43.325196]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559896.6, "northing": 4797193.3, "time": "15:45:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738217, 43.324973]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559852.9, "northing": 4797168.1, "time": "15:45:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737694, 43.324733]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559810.7, "northing": 4797141.1, "time": "15:45:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737189, 43.324479]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559770.0, "northing": 4797112.5, "time": "15:46:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736722, 43.32418]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559732.4, "northing": 4797078.9, "time": "15:46:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73624, 43.323896]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559693.6, "northing": 4797047.1, "time": "15:46:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735711, 43.323662]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559651.0, "northing": 4797020.7, "time": "15:46:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735183, 43.323427]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559608.4, "northing": 4796994.2, "time": "15:47:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734673, 43.323176]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559567.3, "northing": 4796966.0, "time": "15:47:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734152, 43.322935]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559525.3, "northing": 4796938.9, "time": "15:47:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733628, 43.322697]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559483.0, "northing": 4796912.0, "time": "15:48:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733121, 43.322439]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559442.2, "northing": 4796883.0, "time": "15:48:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732644, 43.322156]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559403.8, "northing": 4796851.3, "time": "15:48:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732167, 43.321861]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559365.4, "northing": 4796818.2, "time": "15:49:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73166, 43.321605]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559324.5, "northing": 4796789.4, "time": "15:49:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731113, 43.321395]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559280.4, "northing": 4796765.7, "time": "15:49:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730562, 43.321179]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559235.9, "northing": 4796741.3, "time": "15:49:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730076, 43.320907]}, "properties": {"category": "real_shot", "line": "1009", "easting": 559196.8, "northing": 4796710.7, "time": "15:50:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730503, 43.320455]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559231.8, "northing": 4796660.9, "time": "12:07:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731032, 43.320686]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559274.5, "northing": 4796686.9, "time": "12:08:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731552, 43.320929]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559316.4, "northing": 4796714.2, "time": "12:08:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732026, 43.321217]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559354.6, "northing": 4796746.5, "time": "12:08:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73249, 43.321522]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559391.9, "northing": 4796780.8, "time": "12:09:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732983, 43.321796]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559431.6, "northing": 4796811.5, "time": "12:09:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73351, 43.322028]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559474.1, "northing": 4796837.7, "time": "12:09:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73404, 43.322259]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559516.9, "northing": 4796863.7, "time": "12:10:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73456, 43.322502]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559558.8, "northing": 4796891.1, "time": "12:10:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735064, 43.322759]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559599.4, "northing": 4796920.0, "time": "12:10:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735544, 43.323047]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559638.0, "northing": 4796952.3, "time": "12:11:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736038, 43.323318]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559677.8, "northing": 4796982.7, "time": "12:11:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736572, 43.323545]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559720.9, "northing": 4797008.3, "time": "12:11:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737095, 43.323783]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559763.1, "northing": 4797035.1, "time": "12:11:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737604, 43.324036]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559804.1, "northing": 4797063.6, "time": "12:12:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73808, 43.324328]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559842.4, "northing": 4797096.4, "time": "12:12:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738573, 43.3246]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559882.1, "northing": 4797126.9, "time": "12:12:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7391, 43.324832]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559924.6, "northing": 4797153.1, "time": "12:13:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739614, 43.325082]}, "properties": {"category": "real_shot", "line": "1011", "easting": 559966.0, "northing": 4797181.2, "time": "12:13:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740115, 43.325345]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560006.4, "northing": 4797210.8, "time": "12:13:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740623, 43.325599]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560047.3, "northing": 4797239.3, "time": "12:14:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741142, 43.325844]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560089.2, "northing": 4797266.9, "time": "12:14:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741648, 43.326102]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560129.9, "northing": 4797295.9, "time": "12:14:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742142, 43.326371]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560169.7, "northing": 4797326.2, "time": "12:15:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74264, 43.326638]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560209.8, "northing": 4797356.2, "time": "12:15:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743156, 43.326883]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560251.4, "northing": 4797383.8, "time": "12:15:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743662, 43.327139]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560292.2, "northing": 4797412.6, "time": "12:16:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744144, 43.327424]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560331.0, "northing": 4797444.5, "time": "12:16:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744638, 43.327696]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560370.8, "northing": 4797475.1, "time": "12:16:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745163, 43.327932]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560413.1, "northing": 4797501.7, "time": "12:17:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745689, 43.328167]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560455.5, "northing": 4797528.2, "time": "12:17:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74619, 43.328429]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560495.9, "northing": 4797557.6, "time": "12:17:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746693, 43.328692]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560536.4, "northing": 4797587.2, "time": "12:18:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747214, 43.328933]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560578.4, "northing": 4797614.4, "time": "12:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747729, 43.32918]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560619.9, "northing": 4797642.2, "time": "12:18:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748245, 43.329426]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560661.5, "northing": 4797669.9, "time": "12:18:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748739, 43.329695]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560701.3, "northing": 4797700.1, "time": "12:19:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749236, 43.329964]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560741.3, "northing": 4797730.3, "time": "12:19:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74976, 43.330203]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560783.5, "northing": 4797757.2, "time": "12:19:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750265, 43.33046]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560824.2, "northing": 4797786.2, "time": "12:20:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750761, 43.330729]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560864.2, "northing": 4797816.4, "time": "12:20:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751275, 43.330987]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560905.6, "northing": 4797845.4, "time": "12:20:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751793, 43.331232]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560947.3, "northing": 4797873.0, "time": "12:21:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75231, 43.331464]}, "properties": {"category": "real_shot", "line": "1011", "easting": 560989.0, "northing": 4797899.2, "time": "12:21:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752802, 43.331734]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561028.6, "northing": 4797929.5, "time": "12:21:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7533, 43.332005]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561068.7, "northing": 4797959.9, "time": "12:22:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753801, 43.332268]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561109.1, "northing": 4797989.5, "time": "12:22:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754317, 43.332515]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561150.7, "northing": 4798017.3, "time": "12:22:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754845, 43.33275]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561193.2, "northing": 4798043.8, "time": "12:22:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755352, 43.333006]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561234.1, "northing": 4798072.6, "time": "12:23:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755847, 43.333274]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561273.9, "northing": 4798102.8, "time": "12:23:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756349, 43.333539]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561314.4, "northing": 4798132.5, "time": "12:23:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756874, 43.333772]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561356.7, "northing": 4798158.8, "time": "12:24:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757378, 43.334033]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561397.3, "northing": 4798188.2, "time": "12:24:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757879, 43.334297]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561437.6, "northing": 4798217.9, "time": "12:24:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75839, 43.334549]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561478.8, "northing": 4798246.2, "time": "12:24:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758901, 43.334801]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561520.0, "northing": 4798274.6, "time": "12:25:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759419, 43.335046]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561561.7, "northing": 4798302.2, "time": "12:25:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759934, 43.335293]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561603.2, "northing": 4798330.0, "time": "12:25:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760437, 43.335553]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561643.7, "northing": 4798359.2, "time": "12:26:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760929, 43.335826]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561683.3, "northing": 4798389.9, "time": "12:26:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761424, 43.336095]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561723.2, "northing": 4798420.2, "time": "12:26:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761939, 43.336342]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561764.7, "northing": 4798448.0, "time": "12:27:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76246, 43.336583]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561806.7, "northing": 4798475.1, "time": "12:27:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762954, 43.336856]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561846.4, "northing": 4798505.8, "time": "12:27:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763444, 43.337129]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561885.9, "northing": 4798536.5, "time": "12:27:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763945, 43.337393]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561926.2, "northing": 4798566.2, "time": "12:28:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764454, 43.337648]}, "properties": {"category": "real_shot", "line": "1011", "easting": 561967.2, "northing": 4798594.9, "time": "12:28:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764975, 43.337887]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562009.2, "northing": 4798621.8, "time": "12:28:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765486, 43.338139]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562050.4, "northing": 4798650.1, "time": "12:29:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765993, 43.338399]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562091.2, "northing": 4798679.4, "time": "12:29:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766508, 43.338648]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562132.7, "northing": 4798707.4, "time": "12:29:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767027, 43.338887]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562174.5, "northing": 4798734.4, "time": "12:30:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767566, 43.33911]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562218.0, "northing": 4798759.5, "time": "12:30:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768057, 43.339384]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562257.5, "northing": 4798790.3, "time": "12:30:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768532, 43.339677]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562295.7, "northing": 4798823.2, "time": "12:30:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769041, 43.33993]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562336.7, "northing": 4798851.7, "time": "12:31:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769553, 43.34018]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562378.0, "northing": 4798879.8, "time": "12:31:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770061, 43.340435]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562418.9, "northing": 4798908.6, "time": "12:31:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770578, 43.340682]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562460.5, "northing": 4798936.4, "time": "12:32:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771094, 43.340927]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562502.1, "northing": 4798964.0, "time": "12:32:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771609, 43.341175]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562543.6, "northing": 4798991.9, "time": "12:32:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772099, 43.341452]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562583.0, "northing": 4799023.0, "time": "12:32:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772604, 43.34171]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562623.7, "northing": 4799052.1, "time": "12:33:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77313, 43.341944]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562666.1, "northing": 4799078.4, "time": "12:33:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773634, 43.342204]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562706.7, "northing": 4799107.7, "time": "12:33:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774141, 43.342461]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562747.5, "northing": 4799136.6, "time": "12:34:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774659, 43.342708]}, "properties": {"category": "real_shot", "line": "1011", "easting": 562789.2, "northing": 4799164.4, "time": "12:34:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.730777, 43.320181]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559254.3, "northing": 4796630.6, "time": "15:52:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731301, 43.320406]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559296.6, "northing": 4796656.0, "time": "15:52:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731839, 43.320625]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559340.0, "northing": 4796680.7, "time": "15:52:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732334, 43.320893]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559379.9, "northing": 4796710.8, "time": "15:53:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732805, 43.321189]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559417.8, "northing": 4796744.0, "time": "15:53:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733319, 43.32144]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559459.2, "northing": 4796772.2, "time": "15:53:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733868, 43.321648]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559503.5, "northing": 4796795.7, "time": "15:54:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734406, 43.321871]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559546.9, "northing": 4796820.9, "time": "15:54:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734895, 43.322145]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559586.3, "northing": 4796851.6, "time": "15:54:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73535, 43.322459]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559622.9, "northing": 4796886.8, "time": "15:55:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735849, 43.322725]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559663.1, "northing": 4796916.8, "time": "15:55:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736371, 43.322963]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559705.2, "northing": 4796943.6, "time": "15:55:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736896, 43.323201]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559747.5, "northing": 4796970.4, "time": "15:56:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737405, 43.323456]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559788.5, "northing": 4796999.0, "time": "15:56:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737918, 43.323704]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559829.9, "northing": 4797027.0, "time": "15:56:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738434, 43.323951]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559871.5, "northing": 4797054.8, "time": "15:57:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738954, 43.324194]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559913.4, "northing": 4797082.1, "time": "15:57:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739429, 43.324484]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559951.6, "northing": 4797114.7, "time": "15:57:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739908, 43.324771]}, "properties": {"category": "real_shot", "line": "1013", "easting": 559990.2, "northing": 4797146.9, "time": "15:58:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740452, 43.324987]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560034.1, "northing": 4797171.2, "time": "15:58:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741001, 43.325199]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560078.4, "northing": 4797195.2, "time": "15:58:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741519, 43.325442]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560120.1, "northing": 4797222.6, "time": "15:59:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741977, 43.325749]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560157.0, "northing": 4797257.0, "time": "15:59:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742445, 43.326054]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560194.6, "northing": 4797291.2, "time": "15:59:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742959, 43.326301]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560236.0, "northing": 4797319.0, "time": "16:00:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743491, 43.326529]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560278.9, "northing": 4797344.7, "time": "16:00:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744025, 43.326756]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560322.0, "northing": 4797370.3, "time": "16:00:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744515, 43.327029]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560361.5, "northing": 4797401.0, "time": "16:01:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744996, 43.327315]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560400.2, "northing": 4797433.1, "time": "16:01:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745486, 43.327589]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560439.6, "northing": 4797463.9, "time": "16:01:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746027, 43.327807]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560483.3, "northing": 4797488.5, "time": "16:02:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746608, 43.327988]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560530.2, "northing": 4797509.0, "time": "16:02:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747123, 43.328234]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560571.7, "northing": 4797536.7, "time": "16:02:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747596, 43.328527]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560609.8, "northing": 4797569.5, "time": "16:03:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748102, 43.328787]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560650.5, "northing": 4797598.8, "time": "16:03:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748607, 43.329042]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560691.2, "northing": 4797627.5, "time": "16:03:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749097, 43.329317]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560730.7, "northing": 4797658.4, "time": "16:04:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749598, 43.329581]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560771.0, "northing": 4797688.1, "time": "16:04:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750117, 43.329823]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560812.9, "northing": 4797715.3, "time": "16:04:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750625, 43.330078]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560853.8, "northing": 4797744.0, "time": "16:04:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751116, 43.330352]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560893.3, "northing": 4797774.8, "time": "16:05:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751617, 43.330615]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560933.7, "northing": 4797804.4, "time": "16:05:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752129, 43.330867]}, "properties": {"category": "real_shot", "line": "1013", "easting": 560974.9, "northing": 4797832.7, "time": "16:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752656, 43.331102]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561017.4, "northing": 4797859.2, "time": "16:06:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753174, 43.331347]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561059.2, "northing": 4797886.8, "time": "16:06:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753701, 43.33158]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561101.7, "northing": 4797913.0, "time": "16:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754234, 43.33181]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561144.6, "northing": 4797939.0, "time": "16:07:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754705, 43.332103]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561182.5, "northing": 4797971.9, "time": "16:07:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755177, 43.332399]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561220.5, "northing": 4798005.1, "time": "16:07:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755674, 43.332667]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561260.5, "northing": 4798035.2, "time": "16:08:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756218, 43.33288]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561304.4, "northing": 4798059.3, "time": "16:08:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756784, 43.333076]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561350.1, "northing": 4798081.5, "time": "16:08:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757283, 43.33334]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561390.3, "northing": 4798111.1, "time": "16:09:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757761, 43.333629]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561428.7, "northing": 4798143.6, "time": "16:09:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758256, 43.333898]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561468.6, "northing": 4798173.8, "time": "16:09:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758769, 43.334149]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561509.9, "northing": 4798202.1, "time": "16:10:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759293, 43.334384]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561552.2, "northing": 4798228.6, "time": "16:10:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759801, 43.334639]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561593.1, "northing": 4798257.3, "time": "16:10:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760292, 43.334914]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561632.6, "northing": 4798288.2, "time": "16:11:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760792, 43.335179]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561672.9, "northing": 4798318.0, "time": "16:11:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761311, 43.335422]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561714.7, "northing": 4798345.3, "time": "16:11:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761815, 43.335681]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561755.3, "northing": 4798374.5, "time": "16:11:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762329, 43.335929]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561796.7, "northing": 4798402.4, "time": "16:12:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762851, 43.336171]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561838.8, "northing": 4798429.6, "time": "16:12:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763372, 43.33641]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561880.8, "northing": 4798456.6, "time": "16:12:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763855, 43.336694]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561919.6, "northing": 4798488.5, "time": "16:13:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764337, 43.336979]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561958.4, "northing": 4798520.5, "time": "16:13:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764838, 43.33724]}, "properties": {"category": "real_shot", "line": "1013", "easting": 561998.8, "northing": 4798549.8, "time": "16:13:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765366, 43.337474]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562041.3, "northing": 4798576.2, "time": "16:14:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765861, 43.337742]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562081.2, "northing": 4798606.4, "time": "16:14:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76638, 43.337987]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562123.0, "northing": 4798633.9, "time": "16:14:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766894, 43.338235]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562164.4, "northing": 4798661.9, "time": "16:15:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767398, 43.338496]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562205.0, "northing": 4798691.2, "time": "16:15:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767924, 43.338732]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562247.4, "northing": 4798717.8, "time": "16:15:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768439, 43.338978]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562288.9, "northing": 4798745.5, "time": "16:16:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768926, 43.339258]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562328.1, "northing": 4798777.0, "time": "16:16:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769419, 43.339529]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562367.8, "northing": 4798807.5, "time": "16:16:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76995, 43.339759]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562410.6, "northing": 4798833.4, "time": "16:16:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770472, 43.34]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562452.6, "northing": 4798860.5, "time": "16:17:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770995, 43.340238]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562494.8, "northing": 4798887.4, "time": "16:17:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77151, 43.340487]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562536.3, "northing": 4798915.4, "time": "16:17:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771995, 43.340767]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562575.3, "northing": 4798946.9, "time": "16:18:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772475, 43.341052]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562613.9, "northing": 4798978.9, "time": "16:18:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772955, 43.341338]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562652.5, "northing": 4799011.0, "time": "16:18:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773419, 43.34164]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562689.8, "northing": 4799044.9, "time": "16:19:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773937, 43.341884]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562731.6, "northing": 4799072.4, "time": "16:19:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774507, 43.342072]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562777.6, "northing": 4799093.7, "time": "16:19:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775078, 43.342262]}, "properties": {"category": "real_shot", "line": "1013", "easting": 562823.7, "northing": 4799115.2, "time": "16:20:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775437, 43.341816]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562853.2, "northing": 4799066.0, "time": "12:38:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774968, 43.341547]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562815.5, "northing": 4799035.7, "time": "12:38:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774483, 43.341291]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562776.4, "northing": 4799006.9, "time": "12:38:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773953, 43.34108]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562733.7, "northing": 4798983.1, "time": "12:38:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773394, 43.340878]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562688.6, "northing": 4798960.2, "time": "12:39:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772844, 43.340658]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562644.2, "northing": 4798935.4, "time": "12:39:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772291, 43.340453]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562599.6, "northing": 4798912.2, "time": "12:39:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771744, 43.340236]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562555.5, "northing": 4798887.7, "time": "12:40:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771274, 43.339941]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562517.7, "northing": 4798854.6, "time": "12:40:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770809, 43.339637]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562480.3, "northing": 4798820.5, "time": "12:40:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770286, 43.3394]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562438.2, "northing": 4798793.8, "time": "12:41:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769777, 43.339145]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562397.2, "northing": 4798765.1, "time": "12:41:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769261, 43.338899]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562355.6, "northing": 4798737.4, "time": "12:41:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768732, 43.338667]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562313.0, "northing": 4798711.2, "time": "12:41:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768232, 43.3384]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562272.7, "northing": 4798681.2, "time": "12:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76774, 43.33813]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562233.1, "northing": 4798650.8, "time": "12:42:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76725, 43.337855]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562193.7, "northing": 4798619.9, "time": "12:42:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766746, 43.337596]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562153.1, "northing": 4798590.8, "time": "12:43:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766234, 43.337346]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562111.8, "northing": 4798562.6, "time": "12:43:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765716, 43.337101]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562070.1, "northing": 4798535.0, "time": "12:43:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765208, 43.336843]}, "properties": {"category": "real_shot", "line": "1015", "easting": 562029.2, "northing": 4798506.0, "time": "12:44:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764707, 43.336581]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561988.8, "northing": 4798476.6, "time": "12:44:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764199, 43.336327]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561947.9, "northing": 4798448.0, "time": "12:44:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763679, 43.336085]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561906.0, "northing": 4798420.7, "time": "12:44:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763166, 43.335834]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561864.7, "northing": 4798392.5, "time": "12:45:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762665, 43.335569]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561824.3, "northing": 4798362.7, "time": "12:45:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762167, 43.335304]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561784.2, "northing": 4798332.9, "time": "12:45:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761663, 43.335048]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561743.6, "northing": 4798304.0, "time": "12:46:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76115, 43.334794]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561702.3, "northing": 4798275.5, "time": "12:46:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760635, 43.334547]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561660.8, "northing": 4798247.6, "time": "12:46:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760114, 43.334307]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561618.8, "northing": 4798220.6, "time": "12:47:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759598, 43.334061]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561577.2, "northing": 4798192.9, "time": "12:47:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7591, 43.333798]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561537.1, "northing": 4798163.3, "time": "12:47:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758594, 43.333533]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561496.4, "northing": 4798133.5, "time": "12:47:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758073, 43.333292]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561454.4, "northing": 4798106.4, "time": "12:48:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757562, 43.333042]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561413.2, "northing": 4798078.2, "time": "12:48:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757049, 43.332791]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561371.9, "northing": 4798050.0, "time": "12:48:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756541, 43.332537]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561330.9, "northing": 4798021.4, "time": "12:49:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756032, 43.332285]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561289.9, "northing": 4797993.0, "time": "12:49:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755523, 43.332027]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561248.9, "northing": 4797964.0, "time": "12:49:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755024, 43.331766]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561208.7, "northing": 4797934.7, "time": "12:50:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754517, 43.331508]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561167.9, "northing": 4797905.6, "time": "12:50:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754006, 43.331255]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561126.7, "northing": 4797877.2, "time": "12:50:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753492, 43.331006]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561085.3, "northing": 4797849.2, "time": "12:50:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752978, 43.330757]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561043.9, "northing": 4797821.1, "time": "12:51:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752484, 43.330487]}, "properties": {"category": "real_shot", "line": "1015", "easting": 561004.1, "northing": 4797790.8, "time": "12:51:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751985, 43.330228]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560963.9, "northing": 4797761.7, "time": "12:51:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751466, 43.329977]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560922.1, "northing": 4797733.4, "time": "12:52:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750973, 43.329707]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560882.4, "northing": 4797703.0, "time": "12:52:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750475, 43.329441]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560842.3, "northing": 4797673.1, "time": "12:52:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749965, 43.32919]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560801.2, "northing": 4797644.9, "time": "12:52:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749443, 43.328948]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560759.1, "northing": 4797617.6, "time": "12:53:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748942, 43.328688]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560718.7, "northing": 4797588.4, "time": "12:53:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748432, 43.328433]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560677.6, "northing": 4797559.7, "time": "12:53:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747914, 43.328188]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560635.9, "northing": 4797532.1, "time": "12:54:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747392, 43.327947]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560593.8, "northing": 4797505.0, "time": "12:54:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746877, 43.3277]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560552.3, "northing": 4797477.2, "time": "12:54:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746372, 43.327442]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560511.6, "northing": 4797448.2, "time": "12:54:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745869, 43.327181]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560471.1, "northing": 4797418.8, "time": "12:55:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74536, 43.326925]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560430.1, "northing": 4797390.0, "time": "12:55:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744842, 43.326685]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560388.3, "northing": 4797363.0, "time": "12:55:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744323, 43.326436]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560346.5, "northing": 4797335.0, "time": "12:56:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743819, 43.326178]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560305.9, "northing": 4797306.0, "time": "12:56:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743308, 43.325928]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560264.7, "northing": 4797277.8, "time": "12:56:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742794, 43.325677]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560223.3, "northing": 4797249.6, "time": "12:57:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74228, 43.325431]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560181.8, "northing": 4797221.9, "time": "12:57:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741761, 43.325186]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560140.0, "northing": 4797194.3, "time": "12:57:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741259, 43.324922]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560099.6, "northing": 4797164.6, "time": "12:57:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740763, 43.324656]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560059.6, "northing": 4797134.7, "time": "12:58:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740266, 43.324389]}, "properties": {"category": "real_shot", "line": "1015", "easting": 560019.6, "northing": 4797104.7, "time": "12:58:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739766, 43.324124]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559979.3, "northing": 4797074.9, "time": "12:58:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739269, 43.323858]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559939.3, "northing": 4797045.0, "time": "12:59:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738773, 43.323589]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559899.3, "northing": 4797014.8, "time": "12:59:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738276, 43.323323]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559859.3, "northing": 4796984.9, "time": "12:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737759, 43.32308]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559817.6, "northing": 4796957.5, "time": "12:59:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737248, 43.322825]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559776.4, "northing": 4796928.9, "time": "13:00:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736752, 43.322557]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559736.5, "northing": 4796898.7, "time": "13:00:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736238, 43.322311]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559695.0, "northing": 4796871.0, "time": "13:00:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735726, 43.322057]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559653.8, "northing": 4796842.5, "time": "13:01:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73523, 43.32179]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559613.8, "northing": 4796812.5, "time": "13:01:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73473, 43.321527]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559573.5, "northing": 4796782.9, "time": "13:01:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73423, 43.321264]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559533.2, "northing": 4796753.3, "time": "13:01:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733722, 43.321008]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559492.3, "northing": 4796724.6, "time": "13:02:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733212, 43.320754]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559451.2, "northing": 4796696.0, "time": "13:02:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732701, 43.320502]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559410.0, "northing": 4796667.6, "time": "13:02:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73219, 43.320252]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559368.8, "northing": 4796639.5, "time": "13:03:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73167, 43.320008]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559326.9, "northing": 4796612.0, "time": "13:03:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731171, 43.319742]}, "properties": {"category": "real_shot", "line": "1015", "easting": 559286.7, "northing": 4796582.1, "time": "13:03:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775657, 43.341641]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562871.2, "northing": 4799046.7, "time": "06:49:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775156, 43.341383]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562830.9, "northing": 4799017.6, "time": "06:50:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774658, 43.341113]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562790.8, "northing": 4798987.3, "time": "06:50:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774149, 43.340857]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562749.8, "northing": 4798958.5, "time": "06:50:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773633, 43.340615]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562708.2, "northing": 4798931.2, "time": "06:51:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773134, 43.340346]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562668.1, "northing": 4798901.0, "time": "06:51:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77264, 43.340079]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562628.3, "northing": 4798870.9, "time": "06:52:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772142, 43.339812]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562588.2, "northing": 4798840.9, "time": "06:52:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771637, 43.339553]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562547.5, "northing": 4798811.8, "time": "06:52:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771108, 43.339324]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562504.9, "northing": 4798786.0, "time": "06:53:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770586, 43.339079]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562462.8, "northing": 4798758.4, "time": "06:53:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770077, 43.338815]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562421.8, "northing": 4798728.6, "time": "06:53:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769576, 43.338565]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562381.5, "northing": 4798700.5, "time": "06:54:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769078, 43.338294]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562341.4, "northing": 4798670.0, "time": "06:54:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768598, 43.338012]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562302.8, "northing": 4798638.4, "time": "06:55:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768093, 43.337753]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562262.1, "northing": 4798609.2, "time": "06:55:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767597, 43.337485]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562222.2, "northing": 4798579.1, "time": "06:55:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767088, 43.33723]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562181.2, "northing": 4798550.4, "time": "06:56:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766567, 43.33699]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562139.2, "northing": 4798523.4, "time": "06:56:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766058, 43.336734]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562098.2, "northing": 4798494.6, "time": "06:56:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765526, 43.336504]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562055.3, "northing": 4798468.6, "time": "06:57:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765003, 43.336267]}, "properties": {"category": "real_shot", "line": "1017", "easting": 562013.1, "northing": 4798441.9, "time": "06:57:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764479, 43.336028]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561970.9, "northing": 4798415.0, "time": "06:58:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763982, 43.335758]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561930.9, "northing": 4798384.6, "time": "06:58:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76351, 43.335465]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561892.9, "northing": 4798351.7, "time": "06:58:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763002, 43.33521]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561852.0, "northing": 4798323.0, "time": "06:59:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762449, 43.335005]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561807.4, "northing": 4798299.9, "time": "06:59:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761901, 43.33479]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561763.2, "northing": 4798275.6, "time": "06:59:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761423, 43.334506]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561724.7, "northing": 4798243.7, "time": "07:00:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760982, 43.334178]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561689.3, "northing": 4798206.9, "time": "07:00:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760458, 43.333935]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561647.1, "northing": 4798179.6, "time": "07:00:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759933, 43.333701]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561604.7, "northing": 4798153.2, "time": "07:01:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759393, 43.33348]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561561.2, "northing": 4798128.2, "time": "07:01:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75889, 43.33322]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561520.7, "northing": 4798099.0, "time": "07:01:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758396, 43.332948]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561480.9, "northing": 4798068.4, "time": "07:02:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757894, 43.332691]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561440.5, "northing": 4798039.5, "time": "07:02:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757371, 43.332448]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561398.3, "northing": 4798012.1, "time": "07:02:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756875, 43.332178]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561358.4, "northing": 4797981.8, "time": "07:03:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756377, 43.331914]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561318.3, "northing": 4797952.1, "time": "07:03:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755859, 43.331672]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561276.5, "northing": 4797924.8, "time": "07:03:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755355, 43.331411]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561235.9, "northing": 4797895.5, "time": "07:04:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754864, 43.331138]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561196.4, "northing": 4797864.8, "time": "07:04:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754358, 43.330881]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561155.6, "northing": 4797835.9, "time": "07:04:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753839, 43.330634]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561113.8, "northing": 4797808.1, "time": "07:05:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753341, 43.33037]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561073.7, "northing": 4797778.4, "time": "07:05:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752832, 43.330118]}, "properties": {"category": "real_shot", "line": "1017", "easting": 561032.7, "northing": 4797750.0, "time": "07:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752309, 43.32988]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560990.5, "northing": 4797723.2, "time": "07:06:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751806, 43.329618]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560950.0, "northing": 4797693.8, "time": "07:06:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751308, 43.329351]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560909.9, "northing": 4797663.8, "time": "07:06:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750809, 43.329085]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560869.7, "northing": 4797633.9, "time": "07:07:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750311, 43.32882]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560829.6, "northing": 4797604.1, "time": "07:07:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749808, 43.328558]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560789.1, "northing": 4797574.6, "time": "07:07:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74929, 43.328316]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560747.3, "northing": 4797547.4, "time": "07:08:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748764, 43.328076]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560704.9, "northing": 4797520.3, "time": "07:08:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748267, 43.327814]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560664.9, "northing": 4797490.9, "time": "07:08:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747754, 43.32756]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560623.5, "northing": 4797462.3, "time": "07:09:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747236, 43.327318]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560581.8, "northing": 4797435.0, "time": "07:09:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746705, 43.327086]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560539.0, "northing": 4797408.9, "time": "07:09:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746198, 43.326828]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560498.1, "northing": 4797379.9, "time": "07:10:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745704, 43.326561]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560458.3, "northing": 4797349.8, "time": "07:10:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745196, 43.326306]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560417.4, "northing": 4797321.1, "time": "07:10:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744679, 43.326058]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560375.7, "northing": 4797293.2, "time": "07:11:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744177, 43.325797]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560335.3, "northing": 4797263.9, "time": "07:11:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743687, 43.325522]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560295.8, "northing": 4797233.0, "time": "07:11:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743197, 43.325247]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560256.4, "northing": 4797202.1, "time": "07:12:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742689, 43.324998]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560215.4, "northing": 4797174.1, "time": "07:12:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74216, 43.324757]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560172.8, "northing": 4797146.9, "time": "07:12:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741663, 43.324495]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560132.7, "northing": 4797117.5, "time": "07:13:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741155, 43.324243]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560091.8, "northing": 4797089.1, "time": "07:13:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740628, 43.324]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560049.3, "northing": 4797061.8, "time": "07:13:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740125, 43.323742]}, "properties": {"category": "real_shot", "line": "1017", "easting": 560008.8, "northing": 4797032.7, "time": "07:14:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739623, 43.323482]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559968.3, "northing": 4797003.5, "time": "07:14:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739113, 43.32323]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559927.2, "northing": 4796975.2, "time": "07:14:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738592, 43.322985]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559885.2, "northing": 4796947.6, "time": "07:15:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738095, 43.322719]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559845.2, "northing": 4796917.7, "time": "07:15:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737592, 43.322459]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559804.7, "northing": 4796888.5, "time": "07:15:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737082, 43.322207]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559763.6, "northing": 4796860.1, "time": "07:16:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736569, 43.321959]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559722.2, "northing": 4796832.2, "time": "07:16:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736049, 43.321713]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559680.3, "northing": 4796804.5, "time": "07:16:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735549, 43.321448]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559640.0, "northing": 4796774.7, "time": "07:17:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735051, 43.321186]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559599.9, "northing": 4796745.3, "time": "07:17:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734535, 43.320938]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559558.3, "northing": 4796717.4, "time": "07:17:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734032, 43.320673]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559517.8, "northing": 4796687.6, "time": "07:17:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733538, 43.320407]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559478.0, "northing": 4796657.7, "time": "07:18:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733021, 43.320161]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559436.3, "northing": 4796630.0, "time": "07:18:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732525, 43.319892]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559396.3, "northing": 4796599.8, "time": "07:18:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732026, 43.319629]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559356.1, "northing": 4796570.2, "time": "07:19:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731516, 43.319375]}, "properties": {"category": "real_shot", "line": "1017", "easting": 559315.0, "northing": 4796541.6, "time": "07:19:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.731968, 43.318897]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559352.1, "northing": 4796488.9, "time": "13:06:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732447, 43.319182]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559390.7, "northing": 4796520.9, "time": "13:07:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732918, 43.319477]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559428.6, "northing": 4796554.0, "time": "13:07:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733394, 43.319767]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559466.9, "northing": 4796586.5, "time": "13:07:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733911, 43.320012]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559508.6, "northing": 4796614.1, "time": "13:08:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734423, 43.320262]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559549.9, "northing": 4796642.2, "time": "13:08:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734938, 43.320511]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559591.4, "northing": 4796670.2, "time": "13:08:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735452, 43.320759]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559632.8, "northing": 4796698.1, "time": "13:09:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735926, 43.321048]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559671.0, "northing": 4796730.6, "time": "13:09:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736395, 43.321349]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559708.7, "northing": 4796764.3, "time": "13:09:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736884, 43.321622]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559748.1, "northing": 4796795.0, "time": "13:10:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737367, 43.321904]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559787.0, "northing": 4796826.7, "time": "13:10:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737881, 43.322154]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559828.4, "northing": 4796854.8, "time": "13:10:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738404, 43.322391]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559870.6, "northing": 4796881.5, "time": "13:11:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73893, 43.322628]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559913.0, "northing": 4796908.2, "time": "13:11:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73946, 43.322861]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559955.7, "northing": 4796934.4, "time": "13:11:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739962, 43.323121]}, "properties": {"category": "real_shot", "line": "1019", "easting": 559996.2, "northing": 4796963.7, "time": "13:11:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740455, 43.323394]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560035.9, "northing": 4796994.3, "time": "13:12:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740958, 43.323654]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560076.4, "northing": 4797023.6, "time": "13:12:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741464, 43.323911]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560117.2, "northing": 4797052.5, "time": "13:12:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741983, 43.324155]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560159.0, "northing": 4797080.0, "time": "13:13:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742511, 43.324389]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560201.6, "northing": 4797106.3, "time": "13:13:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743014, 43.324649]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560242.1, "northing": 4797135.6, "time": "13:13:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743521, 43.324904]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560283.0, "northing": 4797164.3, "time": "13:14:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744046, 43.325142]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560325.3, "northing": 4797191.0, "time": "13:14:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744561, 43.32539]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560366.8, "northing": 4797219.0, "time": "13:14:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745066, 43.325649]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560407.5, "northing": 4797248.1, "time": "13:15:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745565, 43.325913]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560447.7, "northing": 4797277.8, "time": "13:15:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746065, 43.326176]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560488.0, "northing": 4797307.4, "time": "13:15:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746566, 43.326442]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560528.3, "northing": 4797337.2, "time": "13:16:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747063, 43.326706]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560568.4, "northing": 4797366.9, "time": "13:16:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747587, 43.326945]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560610.6, "northing": 4797393.8, "time": "13:16:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74809, 43.327206]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560651.1, "northing": 4797423.2, "time": "13:16:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748601, 43.327458]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560692.3, "northing": 4797451.6, "time": "13:17:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74913, 43.327691]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560735.0, "northing": 4797477.8, "time": "13:17:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749644, 43.327939]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560776.4, "northing": 4797505.7, "time": "13:17:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750155, 43.328192]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560817.6, "northing": 4797534.2, "time": "13:18:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750659, 43.328452]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560858.2, "northing": 4797563.4, "time": "13:18:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751163, 43.328711]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560898.8, "northing": 4797592.6, "time": "13:18:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751681, 43.328955]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560940.5, "northing": 4797620.0, "time": "13:19:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752185, 43.329214]}, "properties": {"category": "real_shot", "line": "1019", "easting": 560981.1, "northing": 4797649.2, "time": "13:19:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752683, 43.329481]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561021.2, "northing": 4797679.2, "time": "13:19:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753201, 43.329724]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561063.0, "northing": 4797706.6, "time": "13:20:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7537, 43.329989]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561103.2, "northing": 4797736.4, "time": "13:20:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754198, 43.330256]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561143.3, "northing": 4797766.4, "time": "13:20:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754718, 43.330499]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561185.2, "northing": 4797793.7, "time": "13:20:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755226, 43.330754]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561226.1, "northing": 4797822.4, "time": "13:21:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755719, 43.331025]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561265.8, "northing": 4797852.9, "time": "13:21:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756218, 43.331291]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561306.0, "northing": 4797882.8, "time": "13:21:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75672, 43.331553]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561346.4, "northing": 4797912.3, "time": "13:22:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757226, 43.33181]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561387.2, "northing": 4797941.2, "time": "13:22:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757733, 43.332066]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561428.0, "northing": 4797970.0, "time": "13:22:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758245, 43.332316]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561469.3, "northing": 4797998.1, "time": "13:23:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758752, 43.332574]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561510.1, "northing": 4798027.1, "time": "13:23:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759242, 43.332848]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561549.6, "northing": 4798057.9, "time": "13:23:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75975, 43.333104]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561590.5, "northing": 4798086.7, "time": "13:24:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760264, 43.333351]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561631.9, "northing": 4798114.6, "time": "13:24:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760757, 43.333624]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561671.6, "northing": 4798145.2, "time": "13:24:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761255, 43.333889]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561711.7, "northing": 4798175.0, "time": "13:24:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76175, 43.334157]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561751.6, "northing": 4798205.2, "time": "13:25:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762259, 43.334412]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561792.6, "northing": 4798233.9, "time": "13:25:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762784, 43.334648]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561834.9, "northing": 4798260.5, "time": "13:25:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763315, 43.33488]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561877.7, "northing": 4798286.6, "time": "13:26:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76383, 43.335128]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561919.2, "northing": 4798314.5, "time": "13:26:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764344, 43.335377]}, "properties": {"category": "real_shot", "line": "1019", "easting": 561960.6, "northing": 4798342.6, "time": "13:26:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764853, 43.335631]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562001.6, "northing": 4798371.2, "time": "13:27:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765358, 43.33589]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562042.3, "northing": 4798400.3, "time": "13:27:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765854, 43.336158]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562082.2, "northing": 4798430.4, "time": "13:27:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766372, 43.336402]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562124.0, "northing": 4798457.9, "time": "13:27:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766901, 43.336635]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562166.6, "northing": 4798484.2, "time": "13:28:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767409, 43.336892]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562207.5, "northing": 4798513.1, "time": "13:28:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76793, 43.337132]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562249.5, "northing": 4798540.1, "time": "13:28:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768457, 43.337367]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562292.0, "northing": 4798566.6, "time": "13:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768948, 43.337641]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562331.5, "northing": 4798597.4, "time": "13:29:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769448, 43.337905]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562371.8, "northing": 4798627.1, "time": "13:29:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769966, 43.338148]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562413.5, "northing": 4798654.5, "time": "13:30:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77047, 43.338408]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562454.1, "northing": 4798683.8, "time": "13:30:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770968, 43.338675]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562494.2, "northing": 4798713.8, "time": "13:30:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771478, 43.338928]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562535.3, "northing": 4798742.3, "time": "13:30:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771997, 43.339172]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562577.1, "northing": 4798769.7, "time": "13:31:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772497, 43.339436]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562617.4, "northing": 4798799.4, "time": "13:31:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772997, 43.3397]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562657.6, "northing": 4798829.1, "time": "13:31:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773518, 43.339941]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562699.6, "northing": 4798856.3, "time": "13:32:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774017, 43.340205]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562739.8, "northing": 4798886.0, "time": "13:32:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774515, 43.340472]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562779.9, "northing": 4798916.0, "time": "13:32:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775013, 43.340738]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562820.0, "northing": 4798945.9, "time": "13:33:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775532, 43.34098]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562861.8, "northing": 4798973.2, "time": "13:33:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77604, 43.341238]}, "properties": {"category": "real_shot", "line": "1019", "easting": 562902.7, "northing": 4799002.2, "time": "13:33:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732171, 43.318693]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559368.8, "northing": 4796466.4, "time": "07:21:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732726, 43.31889]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559413.6, "northing": 4796488.6, "time": "07:22:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733247, 43.31913]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559455.6, "northing": 4796515.7, "time": "07:22:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733762, 43.319377]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559497.1, "northing": 4796543.4, "time": "07:22:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734274, 43.319627]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559538.4, "northing": 4796571.6, "time": "07:22:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734785, 43.31988]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559579.6, "northing": 4796600.0, "time": "07:23:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735295, 43.320133]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559620.7, "northing": 4796628.5, "time": "07:23:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735826, 43.320362]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559663.5, "northing": 4796654.3, "time": "07:23:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736314, 43.320639]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559702.8, "northing": 4796685.4, "time": "07:24:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736807, 43.320911]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559742.5, "northing": 4796716.0, "time": "07:24:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737298, 43.321184]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559782.1, "northing": 4796746.6, "time": "07:24:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737794, 43.321452]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559822.0, "northing": 4796776.8, "time": "07:25:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738284, 43.321726]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559861.5, "northing": 4796807.6, "time": "07:25:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738796, 43.321976]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559902.8, "northing": 4796835.7, "time": "07:25:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739309, 43.322226]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559944.1, "northing": 4796863.8, "time": "07:26:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739805, 43.322495]}, "properties": {"category": "real_shot", "line": "1021", "easting": 559984.1, "northing": 4796894.0, "time": "07:26:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740313, 43.322751]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560025.0, "northing": 4796922.8, "time": "07:26:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740835, 43.32299]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560067.1, "northing": 4796949.7, "time": "07:26:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741348, 43.32324]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560108.4, "northing": 4796977.9, "time": "07:27:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741853, 43.323498]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560149.1, "northing": 4797006.9, "time": "07:27:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742361, 43.323754]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560190.1, "northing": 4797035.7, "time": "07:27:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742871, 43.324006]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560231.2, "northing": 4797064.0, "time": "07:28:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743384, 43.324258]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560272.5, "northing": 4797092.4, "time": "07:28:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743907, 43.324496]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560314.7, "northing": 4797119.2, "time": "07:28:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744415, 43.324749]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560355.6, "northing": 4797147.7, "time": "07:29:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744909, 43.325021]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560395.4, "northing": 4797178.2, "time": "07:29:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745409, 43.325286]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560435.7, "northing": 4797208.0, "time": "07:29:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745913, 43.325544]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560476.3, "northing": 4797237.1, "time": "07:29:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746421, 43.3258]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560517.2, "northing": 4797265.9, "time": "07:30:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746909, 43.326076]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560556.5, "northing": 4797296.8, "time": "07:30:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747401, 43.32635]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560596.1, "northing": 4797327.6, "time": "07:30:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747906, 43.326607]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560636.8, "northing": 4797356.6, "time": "07:31:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748416, 43.326861]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560677.9, "northing": 4797385.1, "time": "07:31:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748945, 43.327091]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560720.6, "northing": 4797411.1, "time": "07:31:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749457, 43.327344]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560761.8, "northing": 4797439.5, "time": "07:32:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749961, 43.327604]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560802.4, "northing": 4797468.8, "time": "07:32:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750477, 43.32785]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560844.0, "northing": 4797496.5, "time": "07:32:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750999, 43.32809]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560886.1, "northing": 4797523.5, "time": "07:32:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75153, 43.328322]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560928.9, "northing": 4797549.6, "time": "07:33:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752051, 43.328562]}, "properties": {"category": "real_shot", "line": "1021", "easting": 560970.9, "northing": 4797576.7, "time": "07:33:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75254, 43.328837]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561010.3, "northing": 4797607.6, "time": "07:33:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753027, 43.329116]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561049.5, "northing": 4797638.9, "time": "07:34:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753519, 43.329389]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561089.1, "northing": 4797669.6, "time": "07:34:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754041, 43.329627]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561131.2, "northing": 4797696.4, "time": "07:34:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754567, 43.329865]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561173.6, "northing": 4797723.2, "time": "07:34:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755077, 43.330118]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561214.7, "northing": 4797751.7, "time": "07:35:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755575, 43.330383]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561254.8, "northing": 4797781.5, "time": "07:35:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756071, 43.330652]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561294.7, "northing": 4797811.7, "time": "07:35:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756573, 43.330913]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561335.2, "northing": 4797841.1, "time": "07:36:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757079, 43.33117]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561375.9, "northing": 4797870.0, "time": "07:36:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757586, 43.331427]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561416.8, "northing": 4797898.9, "time": "07:36:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758097, 43.33168]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561457.9, "northing": 4797927.4, "time": "07:37:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758604, 43.331935]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561498.8, "northing": 4797956.1, "time": "07:37:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759117, 43.332186]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561540.1, "northing": 4797984.3, "time": "07:37:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759639, 43.332425]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561582.2, "northing": 4798011.3, "time": "07:37:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760176, 43.33265]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561625.5, "northing": 4798036.6, "time": "07:38:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760679, 43.33291]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561666.0, "northing": 4798065.9, "time": "07:38:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761177, 43.333178]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561706.1, "northing": 4798096.0, "time": "07:38:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761669, 43.333449]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561745.7, "northing": 4798126.5, "time": "07:39:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762192, 43.333688]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561787.9, "northing": 4798153.4, "time": "07:39:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762699, 43.333946]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561828.7, "northing": 4798182.4, "time": "07:39:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76321, 43.334197]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561869.9, "northing": 4798210.7, "time": "07:39:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763734, 43.334435]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561912.1, "northing": 4798237.5, "time": "07:40:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764222, 43.334712]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561951.4, "northing": 4798268.6, "time": "07:40:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764708, 43.334993]}, "properties": {"category": "real_shot", "line": "1021", "easting": 561990.5, "northing": 4798300.2, "time": "07:40:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76522, 43.335242]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562031.8, "northing": 4798328.2, "time": "07:41:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765723, 43.335503]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562072.3, "northing": 4798357.6, "time": "07:41:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766243, 43.335744]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562114.2, "northing": 4798384.7, "time": "07:41:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766758, 43.335992]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562155.7, "northing": 4798412.7, "time": "07:41:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76726, 43.336253]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562196.1, "northing": 4798442.0, "time": "07:42:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76778, 43.336498]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562238.0, "northing": 4798469.6, "time": "07:42:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768303, 43.336737]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562280.2, "northing": 4798496.5, "time": "07:42:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768808, 43.336995]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562320.8, "northing": 4798525.6, "time": "07:43:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769311, 43.337257]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562361.3, "northing": 4798555.0, "time": "07:43:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769835, 43.337495]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562403.6, "northing": 4798581.9, "time": "07:43:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770341, 43.337751]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562444.3, "northing": 4798610.7, "time": "07:44:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770838, 43.338018]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562484.3, "northing": 4798640.7, "time": "07:44:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771357, 43.338261]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562526.2, "northing": 4798668.1, "time": "07:44:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771859, 43.338522]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562566.6, "northing": 4798697.4, "time": "07:44:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772365, 43.338782]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562607.3, "northing": 4798726.7, "time": "07:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772876, 43.339032]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562648.5, "northing": 4798754.9, "time": "07:45:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773387, 43.339284]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562689.7, "northing": 4798783.2, "time": "07:45:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773901, 43.339535]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562731.1, "northing": 4798811.5, "time": "07:45:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77442, 43.339777]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562772.9, "northing": 4798838.7, "time": "07:46:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774923, 43.340037]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562813.4, "northing": 4798868.0, "time": "07:46:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775414, 43.340312]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562852.9, "northing": 4798898.9, "time": "07:46:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775907, 43.340583]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562892.6, "northing": 4798929.4, "time": "07:47:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776402, 43.340853]}, "properties": {"category": "real_shot", "line": "1021", "easting": 562932.4, "northing": 4798959.7, "time": "07:47:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776849, 43.34037]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562969.2, "northing": 4798906.4, "time": "13:36:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77637, 43.340088]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562930.6, "northing": 4798874.8, "time": "13:36:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775842, 43.339857]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562888.1, "northing": 4798848.7, "time": "13:36:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775255, 43.339687]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562840.7, "northing": 4798829.4, "time": "13:36:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774687, 43.339493]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562794.8, "northing": 4798807.4, "time": "13:37:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774183, 43.339236]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562754.2, "northing": 4798778.5, "time": "13:37:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7737, 43.33895]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562715.4, "northing": 4798746.4, "time": "13:37:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773206, 43.33868]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562675.6, "northing": 4798716.0, "time": "13:38:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77268, 43.338447]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562633.2, "northing": 4798689.7, "time": "13:38:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772162, 43.338203]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562591.5, "northing": 4798662.2, "time": "13:38:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771656, 43.337943]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562550.7, "northing": 4798633.0, "time": "13:38:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771145, 43.337692]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562509.6, "northing": 4798604.7, "time": "13:39:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770633, 43.337443]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562468.3, "northing": 4798576.7, "time": "13:39:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770149, 43.337161]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562429.4, "northing": 4798545.0, "time": "13:39:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769667, 43.336875]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562390.6, "northing": 4798512.9, "time": "13:40:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769145, 43.336637]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562348.5, "northing": 4798486.1, "time": "13:40:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768624, 43.336396]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562306.5, "northing": 4798458.9, "time": "13:40:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768107, 43.336149]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562264.9, "northing": 4798431.1, "time": "13:41:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767581, 43.335913]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562222.5, "northing": 4798404.5, "time": "13:41:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767061, 43.335672]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562180.6, "northing": 4798377.3, "time": "13:41:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766552, 43.335416]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562139.6, "northing": 4798348.5, "time": "13:41:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766043, 43.335162]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562098.6, "northing": 4798320.0, "time": "13:42:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765534, 43.334906]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562057.6, "northing": 4798291.2, "time": "13:42:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765034, 43.334644]}, "properties": {"category": "real_shot", "line": "1023", "easting": 562017.3, "northing": 4798261.7, "time": "13:42:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764535, 43.334381]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561977.1, "northing": 4798232.1, "time": "13:43:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764034, 43.334116]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561936.8, "northing": 4798202.3, "time": "13:43:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76354, 43.333846]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561897.0, "northing": 4798172.0, "time": "13:43:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763047, 43.333576]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561857.3, "northing": 4798141.6, "time": "13:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762523, 43.333334]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561815.1, "northing": 4798114.3, "time": "13:44:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762014, 43.333084]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561774.1, "northing": 4798086.2, "time": "13:44:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761507, 43.332827]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561733.2, "northing": 4798057.3, "time": "13:44:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760989, 43.332582]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561691.5, "northing": 4798029.7, "time": "13:45:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760469, 43.332338]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561649.6, "northing": 4798002.2, "time": "13:45:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759965, 43.332079]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561609.0, "northing": 4797973.1, "time": "13:45:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759455, 43.331826]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561567.9, "northing": 4797944.6, "time": "13:46:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758933, 43.331587]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561525.8, "northing": 4797917.7, "time": "13:46:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758433, 43.331325]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561485.5, "northing": 4797888.2, "time": "13:46:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757927, 43.331065]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561444.8, "northing": 4797859.0, "time": "13:46:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757412, 43.330815]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561403.3, "northing": 4797830.8, "time": "13:47:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756891, 43.330574]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561361.3, "northing": 4797803.7, "time": "13:47:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756386, 43.330316]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561320.6, "northing": 4797774.7, "time": "13:47:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755888, 43.330052]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561280.5, "northing": 4797745.0, "time": "13:48:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755384, 43.329791]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561239.9, "northing": 4797715.6, "time": "13:48:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754891, 43.32952]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561200.2, "northing": 4797685.2, "time": "13:48:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754388, 43.329259]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561159.7, "northing": 4797655.8, "time": "13:48:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753877, 43.329008]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561118.5, "northing": 4797627.5, "time": "13:49:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75338, 43.328741]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561078.5, "northing": 4797597.5, "time": "13:49:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752886, 43.32847]}, "properties": {"category": "real_shot", "line": "1023", "easting": 561038.7, "northing": 4797567.1, "time": "13:49:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752386, 43.328206]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560998.4, "northing": 4797537.4, "time": "13:50:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751887, 43.327944]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560958.2, "northing": 4797507.9, "time": "13:50:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751372, 43.327694]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560916.7, "northing": 4797479.8, "time": "13:50:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750847, 43.327457]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560874.4, "northing": 4797453.1, "time": "13:50:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750343, 43.327198]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560833.8, "northing": 4797423.9, "time": "13:51:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749845, 43.326934]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560793.7, "northing": 4797394.3, "time": "13:51:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749334, 43.326681]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560752.5, "northing": 4797365.8, "time": "13:51:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748814, 43.326438]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560710.6, "northing": 4797338.4, "time": "13:52:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748313, 43.326174]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560670.2, "northing": 4797308.8, "time": "13:52:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747806, 43.325917]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560629.4, "northing": 4797279.9, "time": "13:52:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747283, 43.32568]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560587.2, "northing": 4797253.1, "time": "13:52:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746767, 43.325434]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560545.6, "northing": 4797225.4, "time": "13:53:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746266, 43.325169]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560505.3, "northing": 4797195.7, "time": "13:53:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745775, 43.324899]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560465.7, "northing": 4797165.3, "time": "13:53:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74526, 43.324647]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560424.2, "northing": 4797137.0, "time": "13:54:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744734, 43.324413]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560381.8, "northing": 4797110.6, "time": "13:54:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74422, 43.324165]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560340.4, "northing": 4797082.7, "time": "13:54:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743709, 43.323912]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560299.2, "northing": 4797054.2, "time": "13:54:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743195, 43.323663]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560257.8, "northing": 4797026.2, "time": "13:55:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742688, 43.323407]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560216.9, "northing": 4796997.4, "time": "13:55:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742169, 43.323163]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560175.1, "northing": 4796969.9, "time": "13:55:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741641, 43.322932]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560132.5, "northing": 4796943.9, "time": "13:56:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741122, 43.322685]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560090.7, "northing": 4796916.1, "time": "13:56:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740627, 43.322416]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560050.8, "northing": 4796885.8, "time": "13:56:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740138, 43.322142]}, "properties": {"category": "real_shot", "line": "1023", "easting": 560011.4, "northing": 4796855.1, "time": "13:57:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739652, 43.321864]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559972.3, "northing": 4796823.8, "time": "13:57:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739129, 43.321624]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559930.1, "northing": 4796796.8, "time": "13:57:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738604, 43.321387]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559887.8, "northing": 4796770.1, "time": "13:57:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738092, 43.321135]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559846.5, "northing": 4796741.8, "time": "13:58:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737566, 43.320899]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559804.1, "northing": 4796715.2, "time": "13:58:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737054, 43.320648]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559762.8, "northing": 4796687.0, "time": "13:58:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736555, 43.320384]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559722.6, "northing": 4796657.3, "time": "13:59:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736059, 43.320113]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559682.7, "northing": 4796626.8, "time": "13:59:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73558, 43.319832]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559644.1, "northing": 4796595.3, "time": "13:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735094, 43.31955]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559605.0, "northing": 4796563.6, "time": "13:59:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734599, 43.31928]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559565.1, "northing": 4796533.3, "time": "14:00:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734094, 43.319025]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559524.4, "northing": 4796504.6, "time": "14:00:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733579, 43.318776]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559482.9, "northing": 4796476.6, "time": "14:00:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733058, 43.318535]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559440.9, "northing": 4796449.4, "time": "14:01:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732525, 43.318309]}, "properties": {"category": "real_shot", "line": "1023", "easting": 559397.9, "northing": 4796424.0, "time": "14:01:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777173, 43.340008]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562995.8, "northing": 4798866.5, "time": "07:49:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77665, 43.339789]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562953.6, "northing": 4798841.7, "time": "07:50:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776133, 43.339545]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562912.0, "northing": 4798814.3, "time": "07:50:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775621, 43.339296]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562870.7, "northing": 4798786.2, "time": "07:50:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775105, 43.339046]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562829.2, "northing": 4798758.1, "time": "07:51:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774576, 43.338815]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562786.5, "northing": 4798732.0, "time": "07:51:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774059, 43.338569]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562744.9, "northing": 4798704.3, "time": "07:51:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773539, 43.338325]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562703.0, "northing": 4798676.8, "time": "07:52:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77303, 43.338076]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562662.0, "northing": 4798648.8, "time": "07:52:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772514, 43.337826]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562620.4, "northing": 4798620.6, "time": "07:52:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772001, 43.337573]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562579.1, "northing": 4798592.2, "time": "07:53:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771491, 43.33732]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562538.0, "northing": 4798563.7, "time": "07:53:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770979, 43.337074]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562496.7, "northing": 4798536.0, "time": "07:53:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770489, 43.336795]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562457.3, "northing": 4798504.6, "time": "07:54:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769998, 43.336526]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562417.8, "northing": 4798474.4, "time": "07:54:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769481, 43.336278]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562376.1, "northing": 4798446.5, "time": "07:54:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76898, 43.336013]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562335.8, "northing": 4798416.7, "time": "07:55:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768474, 43.335759]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562295.0, "northing": 4798388.1, "time": "07:55:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767962, 43.335502]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562253.8, "northing": 4798359.2, "time": "07:55:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767453, 43.335254]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562212.8, "northing": 4798331.2, "time": "07:56:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766938, 43.335005]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562171.3, "northing": 4798303.2, "time": "07:56:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766439, 43.334739]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562131.1, "northing": 4798273.3, "time": "07:56:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765931, 43.334482]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562090.2, "northing": 4798244.4, "time": "07:57:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765425, 43.334229]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562049.4, "northing": 4798215.9, "time": "07:57:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76491, 43.33398]}, "properties": {"category": "real_shot", "line": "1025", "easting": 562007.9, "northing": 4798187.9, "time": "07:57:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764413, 43.333714]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561967.9, "northing": 4798157.9, "time": "07:58:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76391, 43.333451]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561927.4, "northing": 4798128.4, "time": "07:58:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763402, 43.333197]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561886.5, "northing": 4798099.8, "time": "07:58:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762879, 43.332957]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561844.3, "northing": 4798072.7, "time": "07:59:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762384, 43.332684]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561804.5, "northing": 4798042.0, "time": "07:59:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761884, 43.332423]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561764.2, "northing": 4798012.7, "time": "07:59:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761378, 43.332169]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561723.4, "northing": 4797984.1, "time": "08:00:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760855, 43.331932]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561681.3, "northing": 4797957.4, "time": "08:00:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76035, 43.331665]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561640.6, "northing": 4797927.4, "time": "08:00:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759852, 43.331401]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561600.5, "northing": 4797897.7, "time": "08:01:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759343, 43.331149]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561559.5, "northing": 4797869.3, "time": "08:01:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758823, 43.330907]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561517.6, "northing": 4797842.1, "time": "08:01:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758297, 43.330669]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561475.2, "northing": 4797815.3, "time": "08:02:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757792, 43.330413]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561434.5, "northing": 4797786.5, "time": "08:02:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757288, 43.330149]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561393.9, "northing": 4797756.8, "time": "08:02:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75678, 43.329897]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561353.0, "northing": 4797728.4, "time": "08:03:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756264, 43.329647]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561311.4, "northing": 4797700.3, "time": "08:03:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755761, 43.32939]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561270.9, "northing": 4797671.4, "time": "08:03:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755256, 43.32913]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561230.2, "northing": 4797642.1, "time": "08:04:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75475, 43.328873]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561189.4, "northing": 4797613.2, "time": "08:04:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754243, 43.328617]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561148.6, "northing": 4797584.4, "time": "08:04:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753741, 43.328358]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561108.1, "northing": 4797555.3, "time": "08:05:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753245, 43.328092]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561068.2, "northing": 4797525.4, "time": "08:05:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752739, 43.327829]}, "properties": {"category": "real_shot", "line": "1025", "easting": 561027.4, "northing": 4797495.8, "time": "08:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752242, 43.327565]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560987.4, "northing": 4797466.1, "time": "08:06:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751734, 43.327306]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560946.5, "northing": 4797437.0, "time": "08:06:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751238, 43.327041]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560906.5, "northing": 4797407.2, "time": "08:06:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75074, 43.326774]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560866.4, "northing": 4797377.2, "time": "08:07:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750227, 43.326521]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560825.1, "northing": 4797348.7, "time": "08:07:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749705, 43.326285]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560783.0, "northing": 4797322.1, "time": "08:07:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749201, 43.326025]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560742.4, "northing": 4797292.9, "time": "08:08:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748696, 43.325765]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560701.7, "northing": 4797263.6, "time": "08:08:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748179, 43.325522]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560660.0, "northing": 4797236.3, "time": "08:08:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747656, 43.32528]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560617.9, "northing": 4797209.0, "time": "08:09:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747156, 43.325019]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560577.6, "northing": 4797179.6, "time": "08:09:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746644, 43.324766]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560536.3, "northing": 4797151.2, "time": "08:09:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746134, 43.324514]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560495.2, "northing": 4797122.8, "time": "08:10:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745626, 43.324259]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560454.3, "northing": 4797094.1, "time": "08:10:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7451, 43.324023]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560411.9, "northing": 4797067.5, "time": "08:10:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744596, 43.323763]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560371.3, "northing": 4797038.3, "time": "08:11:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744093, 43.323504]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560330.7, "northing": 4797009.2, "time": "08:11:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743586, 43.323247]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560289.9, "northing": 4796980.3, "time": "08:11:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743081, 43.322988]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560249.2, "northing": 4796951.2, "time": "08:12:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742576, 43.322728]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560208.5, "northing": 4796921.9, "time": "08:12:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742071, 43.322467]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560167.8, "northing": 4796892.6, "time": "08:12:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741571, 43.32221]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560127.5, "northing": 4796863.7, "time": "08:13:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741064, 43.32195]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560086.7, "northing": 4796834.4, "time": "08:13:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740558, 43.321695]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560045.9, "northing": 4796805.7, "time": "08:13:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740036, 43.321454]}, "properties": {"category": "real_shot", "line": "1025", "easting": 560003.8, "northing": 4796778.6, "time": "08:14:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739514, 43.321216]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559961.7, "northing": 4796751.8, "time": "08:14:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738996, 43.320966]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559920.0, "northing": 4796723.6, "time": "08:14:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738482, 43.320719]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559878.5, "northing": 4796695.9, "time": "08:15:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737962, 43.320479]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559836.6, "northing": 4796668.8, "time": "08:15:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737464, 43.320212]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559796.5, "northing": 4796638.8, "time": "08:15:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73697, 43.31994]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559756.7, "northing": 4796608.3, "time": "08:15:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736471, 43.319676]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559716.5, "northing": 4796578.6, "time": "08:16:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735961, 43.319426]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559675.4, "northing": 4796550.4, "time": "08:16:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735473, 43.319147]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559636.1, "northing": 4796519.1, "time": "08:16:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73498, 43.318879]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559596.4, "northing": 4796489.0, "time": "08:17:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734476, 43.318617]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559555.8, "northing": 4796459.5, "time": "08:17:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733963, 43.318366]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559514.4, "northing": 4796431.3, "time": "08:17:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733441, 43.318129]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559472.3, "northing": 4796404.6, "time": "08:18:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.732904, 43.317904]}, "properties": {"category": "real_shot", "line": "1025", "easting": 559429.0, "northing": 4796379.2, "time": "08:18:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777511, 43.339654]}, "properties": {"category": "real_shot", "line": "1027", "easting": 563023.6, "northing": 4798827.4, "time": "07:10:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776987, 43.339417]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562981.3, "northing": 4798800.7, "time": "07:10:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776456, 43.339199]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562938.5, "northing": 4798776.1, "time": "07:11:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775931, 43.338963]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562896.2, "northing": 4798749.5, "time": "07:11:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775413, 43.338721]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562854.5, "northing": 4798722.2, "time": "07:11:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774897, 43.338474]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562812.9, "northing": 4798694.4, "time": "07:12:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774388, 43.338221]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562771.9, "northing": 4798665.9, "time": "07:12:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773883, 43.33796]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562731.2, "northing": 4798636.6, "time": "07:12:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77338, 43.3377]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562690.7, "northing": 4798607.3, "time": "07:12:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772888, 43.337428]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562651.1, "northing": 4798576.7, "time": "07:13:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772384, 43.337169]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562610.5, "northing": 4798547.6, "time": "07:13:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771864, 43.336927]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562568.6, "northing": 4798520.3, "time": "07:13:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771363, 43.336664]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562528.3, "northing": 4798490.7, "time": "07:14:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770863, 43.3364]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562488.0, "northing": 4798461.0, "time": "07:14:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770362, 43.336136]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562447.7, "northing": 4798431.4, "time": "07:14:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769861, 43.335874]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562407.3, "northing": 4798401.9, "time": "07:14:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769358, 43.335613]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562366.8, "northing": 4798372.5, "time": "07:15:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768856, 43.335352]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562326.4, "northing": 4798343.1, "time": "07:15:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768358, 43.335086]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562286.3, "northing": 4798313.2, "time": "07:15:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767846, 43.334832]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562245.1, "northing": 4798284.7, "time": "07:16:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767319, 43.3346]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562202.6, "northing": 4798258.5, "time": "07:16:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766787, 43.33437]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562159.7, "northing": 4798232.6, "time": "07:16:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766271, 43.334123]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562118.1, "northing": 4798204.7, "time": "07:16:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76575, 43.33388]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562076.1, "northing": 4798177.4, "time": "07:17:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76523, 43.33364]}, "properties": {"category": "real_shot", "line": "1027", "easting": 562034.2, "northing": 4798150.3, "time": "07:17:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764706, 43.333401]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561992.0, "northing": 4798123.4, "time": "07:17:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76418, 43.333164]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561949.6, "northing": 4798096.7, "time": "07:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763652, 43.332931]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561907.0, "northing": 4798070.4, "time": "07:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763127, 43.332694]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561864.7, "northing": 4798043.7, "time": "07:18:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76263, 43.332426]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561824.7, "northing": 4798013.6, "time": "07:18:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762134, 43.332159]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561784.7, "northing": 4797983.6, "time": "07:19:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761631, 43.331898]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561744.2, "northing": 4797954.2, "time": "07:19:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761126, 43.331639]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561703.5, "northing": 4797925.1, "time": "07:19:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760618, 43.331386]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561662.6, "northing": 4797896.6, "time": "07:20:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760102, 43.331137]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561621.0, "northing": 4797868.6, "time": "07:20:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759583, 43.330895]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561579.2, "northing": 4797841.3, "time": "07:20:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759118, 43.330595]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561541.8, "northing": 4797807.6, "time": "07:20:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758646, 43.330299]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561503.8, "northing": 4797774.4, "time": "07:21:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758159, 43.330021]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561464.6, "northing": 4797743.2, "time": "07:21:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757657, 43.32976]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561424.2, "northing": 4797713.8, "time": "07:21:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757132, 43.329523]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561381.9, "northing": 4797687.1, "time": "07:22:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756593, 43.329301]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561338.4, "northing": 4797662.1, "time": "07:22:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756069, 43.329062]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561296.2, "northing": 4797635.2, "time": "07:22:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75555, 43.32882]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561254.3, "northing": 4797607.9, "time": "07:22:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755057, 43.328548]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561214.6, "northing": 4797577.3, "time": "07:23:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754556, 43.328285]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561174.3, "northing": 4797547.7, "time": "07:23:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754047, 43.328031]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561133.3, "northing": 4797519.2, "time": "07:23:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753529, 43.327787]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561091.5, "northing": 4797491.7, "time": "07:24:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753004, 43.32755]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561049.2, "northing": 4797465.0, "time": "07:24:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752513, 43.327274]}, "properties": {"category": "real_shot", "line": "1027", "easting": 561009.7, "northing": 4797434.0, "time": "07:24:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752027, 43.326998]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560970.5, "northing": 4797403.0, "time": "07:24:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751519, 43.32674]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560929.6, "northing": 4797374.0, "time": "07:25:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750988, 43.326513]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560886.8, "northing": 4797348.3, "time": "07:25:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750477, 43.326261]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560845.6, "northing": 4797320.0, "time": "07:25:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749989, 43.325983]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560806.3, "northing": 4797288.8, "time": "07:26:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749496, 43.325713]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560766.6, "northing": 4797258.4, "time": "07:26:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748999, 43.325443]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560726.6, "northing": 4797228.1, "time": "07:26:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748481, 43.325201]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560684.8, "northing": 4797200.8, "time": "07:26:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747943, 43.324979]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560641.4, "northing": 4797175.8, "time": "07:27:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747434, 43.324723]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560600.4, "northing": 4797147.0, "time": "07:27:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746936, 43.324456]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560560.3, "northing": 4797117.0, "time": "07:27:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746433, 43.324197]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560519.8, "northing": 4797087.8, "time": "07:28:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745907, 43.323961]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560477.4, "northing": 4797061.2, "time": "07:28:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745402, 43.323704]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560436.7, "northing": 4797032.3, "time": "07:28:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744907, 43.323432]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560396.8, "northing": 4797001.8, "time": "07:28:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744414, 43.323163]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560357.1, "northing": 4796971.5, "time": "07:29:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743927, 43.322882]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560317.9, "northing": 4796940.0, "time": "07:29:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743434, 43.322612]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560278.2, "northing": 4796909.6, "time": "07:29:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742901, 43.322385]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560235.2, "northing": 4796884.1, "time": "07:30:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742357, 43.322167]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560191.3, "northing": 4796859.5, "time": "07:30:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74184, 43.321923]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560149.6, "northing": 4796832.0, "time": "07:30:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741341, 43.321658]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560109.4, "northing": 4796802.2, "time": "07:31:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740864, 43.321369]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560071.0, "northing": 4796769.7, "time": "07:31:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740368, 43.3211]}, "properties": {"category": "real_shot", "line": "1027", "easting": 560031.1, "northing": 4796739.5, "time": "07:31:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739855, 43.320854]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559989.7, "northing": 4796711.8, "time": "07:31:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739341, 43.320603]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559948.3, "northing": 4796683.6, "time": "07:32:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738838, 43.320343]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559907.8, "northing": 4796654.3, "time": "07:32:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738337, 43.320079]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559867.4, "northing": 4796624.7, "time": "07:32:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737837, 43.319815]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559827.1, "northing": 4796595.0, "time": "07:33:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737322, 43.319568]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559785.6, "northing": 4796567.2, "time": "07:33:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736783, 43.319347]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559742.1, "northing": 4796542.3, "time": "07:33:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736266, 43.319101]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559700.4, "northing": 4796514.6, "time": "07:33:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735752, 43.318851]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559659.0, "northing": 4796486.4, "time": "07:34:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735231, 43.318611]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559617.0, "northing": 4796459.4, "time": "07:34:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734711, 43.318367]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559575.1, "northing": 4796432.0, "time": "07:34:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734181, 43.318136]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559532.3, "northing": 4796405.9, "time": "07:35:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733659, 43.317896]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559490.2, "northing": 4796378.9, "time": "07:35:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733161, 43.317629]}, "properties": {"category": "real_shot", "line": "1027", "easting": 559450.1, "northing": 4796348.9, "time": "07:35:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733618, 43.317159]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559487.6, "northing": 4796297.0, "time": "08:20:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73408, 43.317452]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559524.8, "northing": 4796329.9, "time": "08:20:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734589, 43.317706]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559565.8, "northing": 4796358.5, "time": "08:21:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735152, 43.317899]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559611.3, "northing": 4796380.3, "time": "08:21:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735666, 43.318146]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559652.7, "northing": 4796408.1, "time": "08:21:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736159, 43.318419]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559692.4, "northing": 4796438.8, "time": "08:22:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736677, 43.318665]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559734.2, "northing": 4796466.4, "time": "08:22:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737177, 43.318926]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559774.5, "northing": 4796495.8, "time": "08:22:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737676, 43.319191]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559814.7, "northing": 4796525.6, "time": "08:23:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738181, 43.319451]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559855.4, "northing": 4796554.8, "time": "08:23:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738699, 43.319694]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559897.1, "northing": 4796582.2, "time": "08:23:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7392, 43.319955]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559937.5, "northing": 4796611.5, "time": "08:24:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739694, 43.320227]}, "properties": {"category": "real_shot", "line": "1029", "easting": 559977.3, "northing": 4796642.1, "time": "08:24:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740205, 43.320479]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560018.5, "northing": 4796670.4, "time": "08:24:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740707, 43.32074]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560058.9, "northing": 4796699.8, "time": "08:24:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741208, 43.321003]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560099.3, "northing": 4796729.3, "time": "08:25:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741719, 43.321255]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560140.5, "northing": 4796757.7, "time": "08:25:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742234, 43.321503]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560182.0, "northing": 4796785.6, "time": "08:25:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742743, 43.321757]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560223.0, "northing": 4796814.2, "time": "08:26:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743244, 43.322019]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560263.4, "northing": 4796843.6, "time": "08:26:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743745, 43.322283]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560303.7, "northing": 4796873.3, "time": "08:26:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744244, 43.322548]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560343.9, "northing": 4796903.1, "time": "08:27:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744754, 43.322799]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560385.0, "northing": 4796931.4, "time": "08:27:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745267, 43.323047]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560426.4, "northing": 4796959.3, "time": "08:27:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745781, 43.323299]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560467.8, "northing": 4796987.6, "time": "08:28:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746276, 43.323567]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560507.7, "northing": 4797017.8, "time": "08:28:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746777, 43.32383]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560548.0, "northing": 4797047.3, "time": "08:28:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747282, 43.324088]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560588.7, "northing": 4797076.4, "time": "08:28:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747793, 43.324342]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560629.9, "northing": 4797104.9, "time": "08:29:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748308, 43.324589]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560671.4, "northing": 4797132.7, "time": "08:29:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748826, 43.324832]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560713.2, "northing": 4797160.1, "time": "08:29:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749332, 43.325091]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560753.9, "northing": 4797189.2, "time": "08:30:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749826, 43.32536]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560793.7, "northing": 4797219.5, "time": "08:30:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750327, 43.325623]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560834.1, "northing": 4797249.0, "time": "08:30:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750841, 43.325872]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560875.5, "northing": 4797277.1, "time": "08:31:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751363, 43.326111]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560917.6, "northing": 4797304.0, "time": "08:31:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751857, 43.326382]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560957.4, "northing": 4797334.4, "time": "08:31:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752359, 43.326644]}, "properties": {"category": "real_shot", "line": "1029", "easting": 560997.8, "northing": 4797363.9, "time": "08:31:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75287, 43.326896]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561039.0, "northing": 4797392.3, "time": "08:32:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753394, 43.327133]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561081.2, "northing": 4797419.0, "time": "08:32:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753896, 43.327394]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561121.7, "northing": 4797448.3, "time": "08:32:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754407, 43.327649]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561162.8, "northing": 4797477.0, "time": "08:33:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754915, 43.327902]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561203.8, "northing": 4797505.5, "time": "08:33:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755434, 43.328145]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561245.6, "northing": 4797532.8, "time": "08:33:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755964, 43.32838]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561288.3, "northing": 4797559.3, "time": "08:34:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756471, 43.328633]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561329.2, "northing": 4797587.8, "time": "08:34:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756975, 43.328893]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561369.8, "northing": 4797617.1, "time": "08:34:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757484, 43.329148]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561410.8, "northing": 4797645.7, "time": "08:34:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757997, 43.3294]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561452.1, "northing": 4797674.1, "time": "08:35:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758515, 43.329641]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561493.9, "northing": 4797701.2, "time": "08:35:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759039, 43.329883]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561536.1, "northing": 4797728.5, "time": "08:35:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759563, 43.330119]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561578.4, "northing": 4797755.1, "time": "08:36:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760061, 43.330383]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561618.5, "northing": 4797784.8, "time": "08:36:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760554, 43.330656]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561658.2, "northing": 4797815.5, "time": "08:36:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761055, 43.330919]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561698.5, "northing": 4797845.0, "time": "08:36:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761561, 43.331177]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561739.3, "northing": 4797874.1, "time": "08:37:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762081, 43.331419]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561781.2, "northing": 4797901.3, "time": "08:37:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762583, 43.331679]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561821.6, "northing": 4797930.6, "time": "08:37:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763081, 43.331948]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561861.7, "northing": 4797960.8, "time": "08:38:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763589, 43.332204]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561902.6, "northing": 4797989.6, "time": "08:38:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764097, 43.332457]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561943.6, "northing": 4798018.1, "time": "08:38:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764593, 43.332724]}, "properties": {"category": "real_shot", "line": "1029", "easting": 561983.5, "northing": 4798048.1, "time": "08:39:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765097, 43.332984]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562024.1, "northing": 4798077.4, "time": "08:39:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765606, 43.33324]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562065.1, "northing": 4798106.2, "time": "08:39:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766121, 43.333485]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562106.6, "northing": 4798133.8, "time": "08:39:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766629, 43.333741]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562147.5, "northing": 4798162.6, "time": "08:40:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767124, 43.334011]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562187.4, "northing": 4798192.9, "time": "08:40:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767632, 43.334267]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562228.3, "northing": 4798221.8, "time": "08:40:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768153, 43.334508]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562270.3, "northing": 4798248.9, "time": "08:41:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76865, 43.334774]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562310.3, "northing": 4798278.8, "time": "08:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769148, 43.335042]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562350.4, "northing": 4798308.9, "time": "08:41:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769644, 43.335308]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562390.3, "northing": 4798338.9, "time": "08:41:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770168, 43.335546]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562432.6, "northing": 4798365.7, "time": "08:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770681, 43.335797]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562473.9, "northing": 4798393.9, "time": "08:42:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771184, 43.336057]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562514.4, "northing": 4798423.2, "time": "08:42:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771689, 43.336317]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562555.1, "northing": 4798452.4, "time": "08:43:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772208, 43.33656]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562596.9, "northing": 4798479.8, "time": "08:43:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772729, 43.336799]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562638.9, "northing": 4798506.8, "time": "08:43:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773247, 43.337046]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562680.6, "northing": 4798534.6, "time": "08:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773777, 43.337277]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562723.3, "northing": 4798560.6, "time": "08:44:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774303, 43.337513]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562765.7, "northing": 4798587.2, "time": "08:44:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774807, 43.337773]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562806.3, "northing": 4798616.5, "time": "08:44:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775306, 43.338038]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562846.5, "northing": 4798646.3, "time": "08:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775809, 43.338299]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562887.0, "northing": 4798675.7, "time": "08:45:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776313, 43.338559]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562927.6, "northing": 4798704.9, "time": "08:45:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776816, 43.338819]}, "properties": {"category": "real_shot", "line": "1029", "easting": 562968.1, "northing": 4798734.2, "time": "08:46:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777322, 43.339078]}, "properties": {"category": "real_shot", "line": "1029", "easting": 563008.8, "northing": 4798763.3, "time": "08:46:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777828, 43.339334]}, "properties": {"category": "real_shot", "line": "1029", "easting": 563049.6, "northing": 4798792.1, "time": "08:46:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.733974, 43.316776]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559516.9, "northing": 4796254.7, "time": "06:42:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734444, 43.317063]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559554.7, "northing": 4796287.0, "time": "06:42:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734954, 43.317314]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559595.8, "northing": 4796315.2, "time": "06:42:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735455, 43.317577]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559636.2, "northing": 4796344.8, "time": "06:43:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735951, 43.317847]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559676.1, "northing": 4796375.1, "time": "06:43:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736444, 43.318117]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559715.8, "northing": 4796405.4, "time": "06:43:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736947, 43.318376]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559756.4, "northing": 4796434.6, "time": "06:44:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737467, 43.318619]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559798.3, "northing": 4796461.9, "time": "06:44:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737996, 43.31885]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559841.0, "northing": 4796487.9, "time": "06:44:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738504, 43.319107]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559881.9, "northing": 4796516.9, "time": "06:44:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739018, 43.319357]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559923.3, "northing": 4796545.0, "time": "06:45:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739532, 43.319603]}, "properties": {"category": "real_shot", "line": "1031", "easting": 559964.8, "northing": 4796572.7, "time": "06:45:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740062, 43.319836]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560007.5, "northing": 4796598.9, "time": "06:45:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740585, 43.320075]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560049.7, "northing": 4796625.8, "time": "06:46:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741083, 43.320342]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560089.8, "northing": 4796655.9, "time": "06:46:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741588, 43.320598]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560130.5, "northing": 4796684.7, "time": "06:46:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74211, 43.32084]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560172.6, "northing": 4796711.9, "time": "06:47:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742614, 43.3211]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560213.2, "northing": 4796741.1, "time": "06:47:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743115, 43.321362]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560253.6, "northing": 4796770.6, "time": "06:47:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743614, 43.321626]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560293.8, "northing": 4796800.3, "time": "06:47:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74411, 43.321895]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560333.7, "northing": 4796830.5, "time": "06:48:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744606, 43.322163]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560373.7, "northing": 4796860.6, "time": "06:48:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745098, 43.322434]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560413.3, "northing": 4796891.1, "time": "06:48:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745586, 43.322712]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560452.6, "northing": 4796922.3, "time": "06:49:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746094, 43.322966]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560493.5, "northing": 4796950.9, "time": "06:49:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74661, 43.323212]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560535.1, "northing": 4796978.6, "time": "06:49:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747108, 43.32348]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560575.2, "northing": 4797008.7, "time": "06:50:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747608, 43.323742]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560615.5, "northing": 4797038.2, "time": "06:50:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748134, 43.323978]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560657.9, "northing": 4797064.8, "time": "06:50:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748665, 43.324209]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560700.7, "northing": 4797090.8, "time": "06:50:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749179, 43.324459]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560742.2, "northing": 4797118.9, "time": "06:51:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749696, 43.324706]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560783.8, "northing": 4797146.7, "time": "06:51:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750215, 43.324947]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560825.7, "northing": 4797173.9, "time": "06:51:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750738, 43.325187]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560867.8, "northing": 4797200.9, "time": "06:52:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751265, 43.325421]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560910.3, "northing": 4797227.3, "time": "06:52:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751803, 43.325644]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560953.7, "northing": 4797252.4, "time": "06:52:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752299, 43.325913]}, "properties": {"category": "real_shot", "line": "1031", "easting": 560993.7, "northing": 4797282.7, "time": "06:53:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75279, 43.326187]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561033.2, "northing": 4797313.5, "time": "06:53:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75329, 43.32645]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561073.5, "northing": 4797343.0, "time": "06:53:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7538, 43.326701]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561114.6, "northing": 4797371.3, "time": "06:53:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754309, 43.326957]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561155.6, "northing": 4797400.1, "time": "06:54:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754805, 43.327227]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561195.5, "northing": 4797430.4, "time": "06:54:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755305, 43.327488]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561235.8, "northing": 4797459.8, "time": "06:54:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755809, 43.327749]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561276.4, "northing": 4797489.1, "time": "06:55:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756315, 43.328005]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561317.2, "northing": 4797517.9, "time": "06:55:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756825, 43.328259]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561358.3, "northing": 4797546.5, "time": "06:55:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757334, 43.328512]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561399.3, "northing": 4797575.0, "time": "06:56:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757846, 43.328763]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561440.5, "northing": 4797603.3, "time": "06:56:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758357, 43.329017]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561481.7, "northing": 4797631.8, "time": "06:56:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758871, 43.329265]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561523.1, "northing": 4797659.7, "time": "06:56:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759388, 43.329511]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561564.8, "northing": 4797687.4, "time": "06:57:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759879, 43.329786]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561604.3, "northing": 4797718.4, "time": "06:57:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760379, 43.330049]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561644.6, "northing": 4797747.9, "time": "06:57:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760893, 43.330297]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561686.0, "northing": 4797775.8, "time": "06:58:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761392, 43.330562]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561726.2, "northing": 4797805.6, "time": "06:58:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76189, 43.330827]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561766.3, "northing": 4797835.5, "time": "06:58:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762397, 43.331084]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561807.1, "northing": 4797864.4, "time": "06:59:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762913, 43.331329]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561848.7, "northing": 4797892.0, "time": "06:59:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763418, 43.331588]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561889.4, "northing": 4797921.1, "time": "06:59:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763912, 43.331858]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561929.2, "northing": 4797951.5, "time": "06:59:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764422, 43.332113]}, "properties": {"category": "real_shot", "line": "1031", "easting": 561970.3, "northing": 4797980.1, "time": "07:00:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764935, 43.332362]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562011.6, "northing": 4798008.2, "time": "07:00:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765429, 43.332632]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562051.4, "northing": 4798038.5, "time": "07:00:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76593, 43.332896]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562091.7, "northing": 4798068.2, "time": "07:01:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766439, 43.33315]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562132.7, "northing": 4798096.8, "time": "07:01:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766955, 43.333397]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562174.3, "northing": 4798124.6, "time": "07:01:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767471, 43.333643]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562215.9, "northing": 4798152.3, "time": "07:02:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767964, 43.333912]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562255.6, "northing": 4798182.6, "time": "07:02:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768467, 43.334174]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562296.1, "northing": 4798212.0, "time": "07:02:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768975, 43.33443]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562337.0, "northing": 4798240.9, "time": "07:02:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769491, 43.334676]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562378.6, "northing": 4798268.6, "time": "07:03:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770003, 43.334928]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562419.8, "northing": 4798296.9, "time": "07:03:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7705, 43.335196]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562459.8, "northing": 4798327.1, "time": "07:03:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771004, 43.335456]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562500.4, "northing": 4798356.3, "time": "07:04:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771524, 43.335696]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562542.3, "northing": 4798383.4, "time": "07:04:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772028, 43.335957]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562582.9, "northing": 4798412.7, "time": "07:04:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772527, 43.336223]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562623.1, "northing": 4798442.6, "time": "07:05:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773037, 43.336475]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562664.2, "northing": 4798471.0, "time": "07:05:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773557, 43.336716]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562706.1, "northing": 4798498.2, "time": "07:05:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774064, 43.336973]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562746.9, "northing": 4798527.1, "time": "07:05:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774561, 43.337242]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562786.9, "northing": 4798557.3, "time": "07:06:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77507, 43.337496]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562827.9, "northing": 4798585.9, "time": "07:06:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775582, 43.337745]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562869.2, "northing": 4798614.0, "time": "07:06:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776097, 43.337993]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562910.7, "northing": 4798641.9, "time": "07:07:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776622, 43.33823]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562953.0, "northing": 4798668.6, "time": "07:07:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777118, 43.338499]}, "properties": {"category": "real_shot", "line": "1031", "easting": 562992.9, "northing": 4798698.8, "time": "07:07:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777617, 43.338764]}, "properties": {"category": "real_shot", "line": "1031", "easting": 563033.1, "northing": 4798728.7, "time": "07:07:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778129, 43.339017]}, "properties": {"category": "real_shot", "line": "1031", "easting": 563074.3, "northing": 4798757.1, "time": "07:08:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778012, 43.338342]}, "properties": {"category": "real_shot", "line": "1033", "easting": 563065.5, "northing": 4798682.1, "time": "08:49:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777506, 43.338091]}, "properties": {"category": "real_shot", "line": "1033", "easting": 563024.8, "northing": 4798653.8, "time": "08:49:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776981, 43.337849]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562982.5, "northing": 4798626.6, "time": "08:49:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776477, 43.337588]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562941.9, "northing": 4798597.2, "time": "08:50:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775974, 43.337336]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562901.4, "northing": 4798568.8, "time": "08:50:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775452, 43.337087]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562859.3, "northing": 4798540.8, "time": "08:50:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77495, 43.336828]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562818.9, "northing": 4798511.6, "time": "08:51:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774431, 43.336583]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562777.1, "northing": 4798484.0, "time": "08:51:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773916, 43.336333]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562735.6, "northing": 4798455.9, "time": "08:51:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773413, 43.336074]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562695.1, "northing": 4798426.8, "time": "08:52:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772906, 43.33582]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562654.2, "northing": 4798398.2, "time": "08:52:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772393, 43.33557]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562612.9, "northing": 4798370.0, "time": "08:52:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77191, 43.335288]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562574.0, "northing": 4798338.3, "time": "08:53:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771415, 43.335016]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562534.2, "northing": 4798307.8, "time": "08:53:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770912, 43.334759]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562493.7, "northing": 4798278.8, "time": "08:53:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770423, 43.334483]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562454.3, "northing": 4798247.8, "time": "08:54:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769922, 43.334219]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562414.0, "northing": 4798218.1, "time": "08:54:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769399, 43.333982]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562371.8, "northing": 4798191.4, "time": "08:54:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768887, 43.33373]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562330.6, "northing": 4798163.0, "time": "08:55:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768381, 43.333471]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562289.8, "northing": 4798133.9, "time": "08:55:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767875, 43.333219]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562249.1, "northing": 4798105.5, "time": "08:55:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767351, 43.332974]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562206.8, "northing": 4798077.9, "time": "08:56:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766826, 43.332739]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562164.5, "northing": 4798051.4, "time": "08:56:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766297, 43.332504]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562121.9, "northing": 4798025.0, "time": "08:56:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765795, 43.332245]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562081.4, "northing": 4797995.8, "time": "08:57:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765292, 43.331983]}, "properties": {"category": "real_shot", "line": "1033", "easting": 562040.9, "northing": 4797966.4, "time": "08:57:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764775, 43.331737]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561999.3, "northing": 4797938.6, "time": "08:57:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764262, 43.331486]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561957.9, "northing": 4797910.4, "time": "08:58:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763771, 43.331217]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561918.4, "northing": 4797880.2, "time": "08:58:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763262, 43.330961]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561877.4, "northing": 4797851.4, "time": "08:58:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762742, 43.330716]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561835.5, "northing": 4797823.7, "time": "08:59:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762249, 43.330449]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561795.8, "northing": 4797793.7, "time": "08:59:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761733, 43.330199]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561754.2, "northing": 4797765.6, "time": "08:59:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761222, 43.329946]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561713.0, "northing": 4797737.1, "time": "09:00:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760719, 43.329687]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561672.5, "northing": 4797708.0, "time": "09:00:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760204, 43.329439]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561631.0, "northing": 4797680.1, "time": "09:00:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759674, 43.329206]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561588.3, "northing": 4797653.8, "time": "09:01:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759167, 43.328952]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561547.4, "northing": 4797625.2, "time": "09:01:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758648, 43.328706]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561505.6, "northing": 4797597.5, "time": "09:01:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758129, 43.328464]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561463.8, "northing": 4797570.3, "time": "09:02:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757609, 43.328219]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561421.9, "northing": 4797542.7, "time": "09:02:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757124, 43.327943]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561382.8, "northing": 4797511.7, "time": "09:02:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756626, 43.327677]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561342.7, "northing": 4797481.7, "time": "09:02:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756119, 43.327418]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561301.9, "northing": 4797452.6, "time": "09:03:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755619, 43.327158]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561261.6, "northing": 4797423.4, "time": "09:03:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755103, 43.326907]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561220.0, "northing": 4797395.1, "time": "09:03:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754584, 43.326668]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561178.2, "northing": 4797368.2, "time": "09:04:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754075, 43.326409]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561137.2, "northing": 4797339.1, "time": "09:04:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75357, 43.326149]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561096.5, "northing": 4797309.8, "time": "09:04:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753082, 43.325877]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561057.2, "northing": 4797279.2, "time": "09:05:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752584, 43.325611]}, "properties": {"category": "real_shot", "line": "1033", "easting": 561017.1, "northing": 4797249.3, "time": "09:05:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752077, 43.325359]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560976.2, "northing": 4797221.0, "time": "09:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75158, 43.325085]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560936.2, "northing": 4797190.2, "time": "09:06:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751093, 43.32481]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560897.0, "northing": 4797159.3, "time": "09:06:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750594, 43.324546]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560856.8, "northing": 4797129.6, "time": "09:06:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750086, 43.324289]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560815.9, "northing": 4797100.7, "time": "09:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749564, 43.324054]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560773.8, "northing": 4797074.2, "time": "09:07:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749059, 43.323786]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560733.1, "northing": 4797044.1, "time": "09:07:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748555, 43.323534]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560692.5, "northing": 4797015.7, "time": "09:08:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748035, 43.323291]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560650.6, "northing": 4796988.4, "time": "09:08:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747528, 43.323029]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560609.7, "northing": 4796958.9, "time": "09:08:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747024, 43.322773]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560569.1, "northing": 4796930.1, "time": "09:09:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746519, 43.322518]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560528.4, "northing": 4796901.4, "time": "09:09:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746005, 43.322266]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560487.0, "northing": 4796873.1, "time": "09:09:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745495, 43.322012]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560445.9, "northing": 4796844.5, "time": "09:10:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744988, 43.321757]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560405.0, "northing": 4796815.8, "time": "09:10:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744482, 43.3215]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560364.3, "northing": 4796786.9, "time": "09:10:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743971, 43.321248]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560323.1, "northing": 4796758.6, "time": "09:11:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743458, 43.320997]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560281.7, "northing": 4796730.3, "time": "09:11:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742949, 43.320745]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560240.7, "northing": 4796702.0, "time": "09:11:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742434, 43.320497]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560199.2, "northing": 4796674.0, "time": "09:11:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741914, 43.320252]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560157.3, "northing": 4796646.5, "time": "09:12:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741393, 43.320012]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560115.3, "northing": 4796619.4, "time": "09:12:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740872, 43.319768]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560073.3, "northing": 4796592.0, "time": "09:12:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740373, 43.319505]}, "properties": {"category": "real_shot", "line": "1033", "easting": 560033.1, "northing": 4796562.4, "time": "09:13:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739868, 43.319253]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559992.4, "northing": 4796534.0, "time": "09:13:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739339, 43.319014]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559949.7, "northing": 4796507.1, "time": "09:13:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738838, 43.318751]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559909.3, "northing": 4796477.6, "time": "09:14:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738329, 43.318503]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559868.3, "northing": 4796449.6, "time": "09:14:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737804, 43.318257]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559826.0, "northing": 4796422.0, "time": "09:14:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737315, 43.317988]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559786.6, "northing": 4796391.7, "time": "09:15:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736808, 43.317727]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559745.7, "northing": 4796362.4, "time": "09:15:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736305, 43.317468]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559705.2, "northing": 4796333.3, "time": "09:15:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735798, 43.317212]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559664.3, "northing": 4796304.5, "time": "09:16:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735288, 43.316963]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559623.2, "northing": 4796276.4, "time": "09:16:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734786, 43.316698]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559582.8, "northing": 4796246.7, "time": "09:16:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734286, 43.316436]}, "properties": {"category": "real_shot", "line": "1033", "easting": 559542.5, "northing": 4796217.2, "time": "09:17:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778826, 43.338272]}, "properties": {"category": "real_shot", "line": "1035", "easting": 563131.6, "northing": 4798674.9, "time": "06:14:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778326, 43.338011]}, "properties": {"category": "real_shot", "line": "1035", "easting": 563091.3, "northing": 4798645.6, "time": "06:14:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777849, 43.337722]}, "properties": {"category": "real_shot", "line": "1035", "easting": 563053.0, "northing": 4798613.1, "time": "06:15:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777365, 43.33744]}, "properties": {"category": "real_shot", "line": "1035", "easting": 563014.0, "northing": 4798581.4, "time": "06:15:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776861, 43.337182]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562973.4, "northing": 4798552.4, "time": "06:15:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776375, 43.336903]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562934.3, "northing": 4798521.0, "time": "06:16:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775891, 43.336621]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562895.4, "northing": 4798489.4, "time": "06:16:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775368, 43.336383]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562853.2, "northing": 4798462.5, "time": "06:16:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774809, 43.336181]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562808.1, "northing": 4798439.7, "time": "06:17:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774279, 43.335948]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562765.4, "northing": 4798413.4, "time": "06:17:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773775, 43.335689]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562724.8, "northing": 4798384.3, "time": "06:17:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773252, 43.33545]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562682.7, "northing": 4798357.3, "time": "06:17:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772731, 43.335209]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562640.7, "northing": 4798330.2, "time": "06:18:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772214, 43.334961]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562599.0, "northing": 4798302.2, "time": "06:18:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771702, 43.334709]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562557.8, "northing": 4798273.9, "time": "06:18:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771191, 43.334456]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562516.6, "northing": 4798245.4, "time": "06:19:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770662, 43.334226]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562474.0, "northing": 4798219.4, "time": "06:19:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770155, 43.33397]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562433.1, "northing": 4798190.6, "time": "06:19:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769653, 43.333706]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562392.7, "northing": 4798161.0, "time": "06:20:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769142, 43.333455]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562351.5, "northing": 4798132.7, "time": "06:20:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768623, 43.333215]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562309.7, "northing": 4798105.6, "time": "06:20:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768125, 43.332947]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562269.6, "northing": 4798075.5, "time": "06:20:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767628, 43.332678]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562229.6, "northing": 4798045.3, "time": "06:21:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767117, 43.33243]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562188.4, "northing": 4798017.3, "time": "06:21:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76661, 43.332174]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562147.6, "northing": 4797988.5, "time": "06:21:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766115, 43.331902]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562107.7, "northing": 4797958.0, "time": "06:22:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765608, 43.331645]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562066.9, "northing": 4797929.1, "time": "06:22:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765093, 43.331399]}, "properties": {"category": "real_shot", "line": "1035", "easting": 562025.4, "northing": 4797901.3, "time": "06:22:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764601, 43.331125]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561985.8, "northing": 4797870.6, "time": "06:23:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764101, 43.330863]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561945.5, "northing": 4797841.1, "time": "06:23:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763594, 43.330604]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561904.7, "northing": 4797812.0, "time": "06:23:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763083, 43.330355]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561863.5, "northing": 4797783.9, "time": "06:23:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762575, 43.330099]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561822.6, "northing": 4797755.1, "time": "06:24:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762085, 43.329825]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561783.1, "northing": 4797724.3, "time": "06:24:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761594, 43.32955]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561743.6, "northing": 4797693.4, "time": "06:24:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761092, 43.329288]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561703.2, "northing": 4797663.9, "time": "06:25:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760576, 43.329042]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561661.6, "northing": 4797636.3, "time": "06:25:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760069, 43.328787]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561620.7, "northing": 4797607.5, "time": "06:25:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759551, 43.328541]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561579.0, "northing": 4797579.8, "time": "06:25:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759019, 43.328313]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561536.1, "northing": 4797554.1, "time": "06:26:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75849, 43.328079]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561493.4, "northing": 4797527.8, "time": "06:26:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757984, 43.327822]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561452.7, "northing": 4797498.8, "time": "06:26:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757479, 43.327562]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561412.0, "northing": 4797469.6, "time": "06:27:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756973, 43.327307]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561371.2, "northing": 4797440.9, "time": "06:27:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756468, 43.327047]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561330.5, "northing": 4797411.7, "time": "06:27:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75596, 43.326792]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561289.6, "northing": 4797383.0, "time": "06:27:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755453, 43.326535]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561248.8, "northing": 4797354.1, "time": "06:28:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754946, 43.326279]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561207.9, "northing": 4797325.3, "time": "06:28:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754439, 43.326022]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561167.1, "northing": 4797296.4, "time": "06:28:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753932, 43.325767]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561126.2, "northing": 4797267.7, "time": "06:29:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753422, 43.325513]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561085.1, "northing": 4797239.1, "time": "06:29:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752912, 43.325262]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561044.0, "northing": 4797210.8, "time": "06:29:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752397, 43.325013]}, "properties": {"category": "real_shot", "line": "1035", "easting": 561002.5, "northing": 4797182.8, "time": "06:29:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751883, 43.324764]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560961.1, "northing": 4797154.8, "time": "06:30:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751368, 43.324516]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560919.6, "northing": 4797126.9, "time": "06:30:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750848, 43.324273]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560877.7, "northing": 4797099.5, "time": "06:30:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750334, 43.324025]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560836.2, "northing": 4797071.6, "time": "06:31:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749811, 43.323786]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560794.1, "northing": 4797044.6, "time": "06:31:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749307, 43.323526]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560753.5, "northing": 4797015.4, "time": "06:31:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748823, 43.323246]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560714.5, "northing": 4796984.0, "time": "06:31:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748329, 43.322976]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560674.7, "northing": 4796953.6, "time": "06:32:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747831, 43.32271]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560634.6, "northing": 4796923.7, "time": "06:32:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747328, 43.322448]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560594.1, "northing": 4796894.3, "time": "06:32:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746818, 43.322197]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560553.0, "northing": 4796866.0, "time": "06:33:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746325, 43.321925]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560513.3, "northing": 4796835.4, "time": "06:33:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74584, 43.321645]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560474.2, "northing": 4796804.0, "time": "06:33:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745344, 43.321377]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560434.3, "northing": 4796773.9, "time": "06:34:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744833, 43.321125]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560393.1, "northing": 4796745.5, "time": "06:34:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744311, 43.320886]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560351.0, "northing": 4796718.6, "time": "06:34:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743783, 43.320653]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560308.4, "northing": 4796692.3, "time": "06:34:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743269, 43.320401]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560267.0, "northing": 4796664.0, "time": "06:35:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742755, 43.320151]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560225.6, "northing": 4796635.9, "time": "06:35:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742239, 43.319906]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560184.0, "northing": 4796608.3, "time": "06:35:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741726, 43.319658]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560142.6, "northing": 4796580.3, "time": "06:36:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741207, 43.319413]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560100.8, "northing": 4796552.8, "time": "06:36:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740686, 43.319171]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560058.8, "northing": 4796525.5, "time": "06:36:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740164, 43.318933]}, "properties": {"category": "real_shot", "line": "1035", "easting": 560016.7, "northing": 4796498.7, "time": "06:36:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739642, 43.318691]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559974.6, "northing": 4796471.5, "time": "06:37:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739122, 43.318448]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559932.7, "northing": 4796444.1, "time": "06:37:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738602, 43.318207]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559890.7, "northing": 4796417.0, "time": "06:37:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738072, 43.317975]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559848.0, "northing": 4796390.8, "time": "06:38:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737559, 43.317728]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559806.6, "northing": 4796363.0, "time": "06:38:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737117, 43.317402]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559771.1, "northing": 4796326.5, "time": "06:38:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73668, 43.317066]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559736.0, "northing": 4796288.9, "time": "06:38:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73618, 43.316803]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559695.7, "northing": 4796259.3, "time": "06:39:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735646, 43.316577]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559652.6, "northing": 4796233.8, "time": "06:39:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73511, 43.316352]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559609.4, "northing": 4796208.5, "time": "06:39:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734592, 43.316109]}, "properties": {"category": "real_shot", "line": "1035", "easting": 559567.6, "northing": 4796181.1, "time": "06:40:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.734896, 43.315798]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559592.6, "northing": 4796146.8, "time": "09:19:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735408, 43.31604]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559633.9, "northing": 4796174.0, "time": "09:19:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735971, 43.316234]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559679.3, "northing": 4796196.0, "time": "09:19:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73651, 43.316458]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559722.8, "northing": 4796221.2, "time": "09:19:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737019, 43.316711]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559763.8, "northing": 4796249.7, "time": "09:20:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737543, 43.316948]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559806.1, "northing": 4796276.4, "time": "09:20:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738082, 43.31717]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559849.6, "northing": 4796301.4, "time": "09:20:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738593, 43.317421]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559890.8, "northing": 4796329.7, "time": "09:21:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739098, 43.317679]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559931.5, "northing": 4796358.7, "time": "09:21:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739597, 43.317945]}, "properties": {"category": "real_shot", "line": "1037", "easting": 559971.7, "northing": 4796388.6, "time": "09:21:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74009, 43.318216]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560011.4, "northing": 4796419.0, "time": "09:22:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7406, 43.318471]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560052.5, "northing": 4796447.7, "time": "09:22:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741121, 43.318709]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560094.5, "northing": 4796474.5, "time": "09:22:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741629, 43.318967]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560135.4, "northing": 4796503.5, "time": "09:23:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742135, 43.319223]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560176.2, "northing": 4796532.3, "time": "09:23:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742634, 43.319487]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560216.4, "northing": 4796562.0, "time": "09:23:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743129, 43.319756]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560256.3, "northing": 4796592.3, "time": "09:23:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74362, 43.320031]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560295.8, "northing": 4796623.1, "time": "09:24:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744111, 43.320304]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560335.4, "northing": 4796653.8, "time": "09:24:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744604, 43.320573]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560375.1, "northing": 4796684.1, "time": "09:24:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745095, 43.320847]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560414.6, "northing": 4796714.8, "time": "09:25:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745593, 43.321115]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560454.7, "northing": 4796745.0, "time": "09:25:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746112, 43.321357]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560496.6, "northing": 4796772.2, "time": "09:25:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746619, 43.321613]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560537.4, "northing": 4796801.0, "time": "09:26:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747129, 43.321868]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560578.5, "northing": 4796829.7, "time": "09:26:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747642, 43.322114]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560619.9, "northing": 4796857.4, "time": "09:26:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74816, 43.322361]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560661.6, "northing": 4796885.2, "time": "09:27:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748681, 43.322603]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560703.6, "northing": 4796912.4, "time": "09:27:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749208, 43.322836]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560746.1, "northing": 4796938.7, "time": "09:27:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749747, 43.323058]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560789.6, "northing": 4796963.8, "time": "09:27:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750276, 43.323293]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560832.3, "northing": 4796990.2, "time": "09:28:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750774, 43.323556]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560872.4, "northing": 4797019.8, "time": "09:28:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751273, 43.323824]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560912.6, "northing": 4797049.9, "time": "09:28:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75177, 43.324091]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560952.6, "northing": 4797079.9, "time": "09:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752282, 43.324341]}, "properties": {"category": "real_shot", "line": "1037", "easting": 560993.9, "northing": 4797108.1, "time": "09:29:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75278, 43.324606]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561034.0, "northing": 4797137.9, "time": "09:29:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753273, 43.324878]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561073.7, "northing": 4797168.5, "time": "09:30:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753781, 43.325134]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561114.6, "northing": 4797197.2, "time": "09:30:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754302, 43.325374]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561156.6, "northing": 4797224.3, "time": "09:30:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754831, 43.325607]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561199.3, "northing": 4797250.6, "time": "09:30:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755357, 43.325843]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561241.7, "northing": 4797277.1, "time": "09:31:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755859, 43.326103]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561282.1, "northing": 4797306.4, "time": "09:31:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756354, 43.326374]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561322.0, "northing": 4797336.8, "time": "09:31:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756846, 43.326646]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561361.6, "northing": 4797367.4, "time": "09:32:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757334, 43.326925]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561400.9, "northing": 4797398.7, "time": "09:32:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75785, 43.327169]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561442.5, "northing": 4797426.2, "time": "09:32:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758358, 43.327424]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561483.4, "northing": 4797454.9, "time": "09:33:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758872, 43.327675]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561524.8, "northing": 4797483.2, "time": "09:33:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759403, 43.327904]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561567.6, "northing": 4797509.0, "time": "09:33:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759941, 43.328128]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561611.0, "northing": 4797534.3, "time": "09:33:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760458, 43.328374]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561652.7, "northing": 4797562.0, "time": "09:34:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760949, 43.328645]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561692.2, "northing": 4797592.4, "time": "09:34:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761419, 43.328942]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561730.0, "northing": 4797625.8, "time": "09:34:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761906, 43.329222]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561769.2, "northing": 4797657.2, "time": "09:35:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762415, 43.329475]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561810.2, "northing": 4797685.7, "time": "09:35:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762926, 43.329726]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561851.4, "northing": 4797713.9, "time": "09:35:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763431, 43.329986]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561892.1, "northing": 4797743.2, "time": "09:36:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763936, 43.330244]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561932.8, "northing": 4797772.2, "time": "09:36:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764449, 43.330493]}, "properties": {"category": "real_shot", "line": "1037", "easting": 561974.1, "northing": 4797800.3, "time": "09:36:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764975, 43.330729]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562016.5, "northing": 4797826.9, "time": "09:36:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765502, 43.330965]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562059.0, "northing": 4797853.4, "time": "09:37:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766004, 43.331227]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562099.4, "northing": 4797882.9, "time": "09:37:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76651, 43.331484]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562140.2, "northing": 4797911.8, "time": "09:37:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767025, 43.331732]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562181.7, "northing": 4797939.8, "time": "09:38:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767546, 43.331973]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562223.7, "northing": 4797966.9, "time": "09:38:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768057, 43.332224]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562264.8, "northing": 4797995.2, "time": "09:38:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768553, 43.332493]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562304.8, "northing": 4798025.4, "time": "09:39:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769053, 43.332758]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562345.0, "northing": 4798055.2, "time": "09:39:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769549, 43.333023]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562385.0, "northing": 4798085.0, "time": "09:39:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770043, 43.333296]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562424.7, "northing": 4798115.7, "time": "09:39:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770544, 43.333559]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562465.1, "northing": 4798145.3, "time": "09:40:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771063, 43.3338]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562506.9, "northing": 4798172.5, "time": "09:40:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771569, 43.334056]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562547.7, "northing": 4798201.3, "time": "09:40:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772069, 43.334324]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562587.9, "northing": 4798231.4, "time": "09:41:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772572, 43.334584]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562628.4, "northing": 4798260.6, "time": "09:41:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773088, 43.33483]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562670.0, "northing": 4798288.4, "time": "09:41:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77361, 43.335069]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562712.1, "northing": 4798315.3, "time": "09:41:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77411, 43.335335]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562752.3, "northing": 4798345.2, "time": "09:42:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774611, 43.335598]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562792.7, "northing": 4798374.8, "time": "09:42:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775147, 43.335821]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562835.9, "northing": 4798400.0, "time": "09:42:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775678, 43.336052]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562878.7, "northing": 4798426.0, "time": "09:43:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776192, 43.336302]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562920.1, "northing": 4798454.2, "time": "09:43:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7767, 43.336558]}, "properties": {"category": "real_shot", "line": "1037", "easting": 562961.0, "northing": 4798483.0, "time": "09:43:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777206, 43.336814]}, "properties": {"category": "real_shot", "line": "1037", "easting": 563001.8, "northing": 4798511.8, "time": "09:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777709, 43.337075]}, "properties": {"category": "real_shot", "line": "1037", "easting": 563042.3, "northing": 4798541.2, "time": "09:44:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778206, 43.337342]}, "properties": {"category": "real_shot", "line": "1037", "easting": 563082.3, "northing": 4798571.2, "time": "09:44:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778698, 43.337614]}, "properties": {"category": "real_shot", "line": "1037", "easting": 563121.9, "northing": 4798601.8, "time": "09:44:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779188, 43.337891]}, "properties": {"category": "real_shot", "line": "1037", "easting": 563161.3, "northing": 4798632.9, "time": "09:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73532, 43.315352]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559627.4, "northing": 4796097.6, "time": "15:29:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.735803, 43.315618]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559666.3, "northing": 4796127.5, "time": "15:29:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736281, 43.315904]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559704.8, "northing": 4796159.6, "time": "15:29:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736773, 43.316176]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559744.4, "northing": 4796190.1, "time": "15:29:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737267, 43.316446]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559784.2, "northing": 4796220.4, "time": "15:30:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737771, 43.316705]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559824.8, "northing": 4796249.6, "time": "15:30:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738302, 43.316932]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559867.7, "northing": 4796275.2, "time": "15:30:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738854, 43.317147]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559912.2, "northing": 4796299.4, "time": "15:31:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739358, 43.317405]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559952.8, "northing": 4796328.5, "time": "15:31:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739857, 43.317668]}, "properties": {"category": "real_shot", "line": "1039", "easting": 559993.0, "northing": 4796358.0, "time": "15:31:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740376, 43.317912]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560034.9, "northing": 4796385.5, "time": "15:32:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740894, 43.318158]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560076.6, "northing": 4796413.2, "time": "15:32:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741397, 43.318417]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560117.2, "northing": 4796442.3, "time": "15:32:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741899, 43.318679]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560157.6, "northing": 4796471.8, "time": "15:33:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742412, 43.318924]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560199.0, "northing": 4796499.3, "time": "15:33:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742935, 43.319169]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560241.1, "northing": 4796526.9, "time": "15:33:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743434, 43.319434]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560281.3, "northing": 4796556.7, "time": "15:33:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743948, 43.319679]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560322.8, "northing": 4796584.3, "time": "15:34:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744461, 43.319932]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560364.1, "northing": 4796612.8, "time": "15:34:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744957, 43.320199]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560404.1, "northing": 4796642.8, "time": "15:34:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74545, 43.320469]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560443.8, "northing": 4796673.1, "time": "15:35:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745942, 43.320742]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560483.4, "northing": 4796703.8, "time": "15:35:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746445, 43.321004]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560523.9, "northing": 4796733.2, "time": "15:35:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746963, 43.321245]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560565.7, "northing": 4796760.4, "time": "15:36:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747474, 43.321499]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560606.9, "northing": 4796789.0, "time": "15:36:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747981, 43.321757]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560647.7, "northing": 4796818.0, "time": "15:36:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748482, 43.322017]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560688.1, "northing": 4796847.2, "time": "15:37:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74899, 43.322275]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560729.0, "northing": 4796876.2, "time": "15:37:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749508, 43.322519]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560770.8, "northing": 4796903.7, "time": "15:37:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75004, 43.322746]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560813.7, "northing": 4796929.3, "time": "15:37:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750555, 43.322996]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560855.2, "northing": 4796957.5, "time": "15:38:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751048, 43.323267]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560894.9, "northing": 4796987.9, "time": "15:38:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751548, 43.32353]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560935.2, "northing": 4797017.5, "time": "15:38:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752062, 43.323778]}, "properties": {"category": "real_shot", "line": "1039", "easting": 560976.6, "northing": 4797045.4, "time": "15:39:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75257, 43.324036]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561017.5, "northing": 4797074.4, "time": "15:39:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753066, 43.324303]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561057.5, "northing": 4797104.4, "time": "15:39:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753556, 43.324576]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561096.9, "northing": 4797135.1, "time": "15:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754055, 43.324843]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561137.1, "northing": 4797165.1, "time": "15:40:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754567, 43.325091]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561178.4, "northing": 4797193.1, "time": "15:40:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755097, 43.325324]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561221.1, "northing": 4797219.3, "time": "15:41:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755631, 43.325553]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561264.2, "northing": 4797245.1, "time": "15:41:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756149, 43.325798]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561305.9, "northing": 4797272.7, "time": "15:41:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75666, 43.326047]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561347.1, "northing": 4797300.7, "time": "15:41:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75717, 43.326304]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561388.2, "northing": 4797329.7, "time": "15:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757671, 43.326563]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561428.6, "northing": 4797358.8, "time": "15:42:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758166, 43.326835]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561468.4, "northing": 4797389.4, "time": "15:42:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758664, 43.327099]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561508.5, "northing": 4797419.1, "time": "15:43:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759166, 43.32736]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561549.0, "northing": 4797448.4, "time": "15:43:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759675, 43.327615]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561590.0, "northing": 4797477.1, "time": "15:43:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76019, 43.327863]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561631.5, "northing": 4797505.0, "time": "15:44:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760716, 43.328098]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561673.9, "northing": 4797531.5, "time": "15:44:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761234, 43.328345]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561715.6, "northing": 4797559.3, "time": "15:44:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761733, 43.32861]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561755.8, "northing": 4797589.1, "time": "15:45:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762236, 43.32887]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561796.3, "northing": 4797618.4, "time": "15:45:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762743, 43.329124]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561837.2, "northing": 4797647.0, "time": "15:45:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763259, 43.32937]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561878.8, "northing": 4797674.7, "time": "15:45:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763782, 43.329612]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561920.9, "northing": 4797701.9, "time": "15:46:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764283, 43.329876]}, "properties": {"category": "real_shot", "line": "1039", "easting": 561961.3, "northing": 4797731.6, "time": "15:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764776, 43.330145]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562001.0, "northing": 4797761.8, "time": "15:46:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765277, 43.33041]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562041.3, "northing": 4797791.6, "time": "15:47:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765783, 43.330665]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562082.1, "northing": 4797820.4, "time": "15:47:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766295, 43.330919]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562123.3, "northing": 4797848.9, "time": "15:47:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766813, 43.331161]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562165.1, "northing": 4797876.2, "time": "15:48:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767308, 43.331431]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562204.9, "northing": 4797906.6, "time": "15:48:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767801, 43.331702]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562244.6, "northing": 4797937.0, "time": "15:48:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768298, 43.33197]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562284.6, "northing": 4797967.2, "time": "15:48:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768814, 43.332217]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562326.2, "northing": 4797995.0, "time": "15:49:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769346, 43.332444]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562369.1, "northing": 4798020.6, "time": "15:49:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769863, 43.332691]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562410.8, "northing": 4798048.4, "time": "15:49:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770353, 43.332967]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562450.2, "northing": 4798079.4, "time": "15:50:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770847, 43.333236]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562490.0, "northing": 4798109.7, "time": "15:50:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771378, 43.333463]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562532.8, "northing": 4798135.3, "time": "15:50:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771904, 43.333702]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562575.2, "northing": 4798162.2, "time": "15:51:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772418, 43.333953]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562616.6, "northing": 4798190.5, "time": "15:51:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7729, 43.334235]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562655.4, "northing": 4798222.1, "time": "15:51:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773383, 43.334519]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562694.2, "northing": 4798254.0, "time": "15:52:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773895, 43.334766]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562735.5, "northing": 4798281.9, "time": "15:52:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774398, 43.335028]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562776.0, "northing": 4798311.3, "time": "15:52:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774909, 43.33528]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562817.2, "northing": 4798339.7, "time": "15:52:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775431, 43.335521]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562859.2, "northing": 4798366.9, "time": "15:53:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775973, 43.335738]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562902.9, "northing": 4798391.4, "time": "15:53:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776508, 43.335966]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562946.1, "northing": 4798417.1, "time": "15:53:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777019, 43.33622]}, "properties": {"category": "real_shot", "line": "1039", "easting": 562987.2, "northing": 4798445.7, "time": "15:54:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77748, 43.336526]}, "properties": {"category": "real_shot", "line": "1039", "easting": 563024.3, "northing": 4798480.0, "time": "15:54:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777977, 43.336792]}, "properties": {"category": "real_shot", "line": "1039", "easting": 563064.3, "northing": 4798509.9, "time": "15:54:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778474, 43.337058]}, "properties": {"category": "real_shot", "line": "1039", "easting": 563104.3, "northing": 4798539.8, "time": "15:55:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778985, 43.33731]}, "properties": {"category": "real_shot", "line": "1039", "easting": 563145.5, "northing": 4798568.2, "time": "15:55:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779488, 43.337573]}, "properties": {"category": "real_shot", "line": "1039", "easting": 563186.0, "northing": 4798597.8, "time": "15:55:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779808, 43.337224]}, "properties": {"category": "real_shot", "line": "1041", "easting": 563212.3, "northing": 4798559.3, "time": "09:47:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779377, 43.336892]}, "properties": {"category": "real_shot", "line": "1041", "easting": 563177.7, "northing": 4798522.1, "time": "09:47:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778911, 43.336593]}, "properties": {"category": "real_shot", "line": "1041", "easting": 563140.2, "northing": 4798488.5, "time": "09:48:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778383, 43.336358]}, "properties": {"category": "real_shot", "line": "1041", "easting": 563097.7, "northing": 4798462.0, "time": "09:48:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777859, 43.336119]}, "properties": {"category": "real_shot", "line": "1041", "easting": 563055.4, "northing": 4798435.1, "time": "09:48:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777368, 43.335848]}, "properties": {"category": "real_shot", "line": "1041", "easting": 563015.9, "northing": 4798404.6, "time": "09:49:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776871, 43.33558]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562975.9, "northing": 4798374.5, "time": "09:49:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776366, 43.335319]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562935.2, "northing": 4798345.1, "time": "09:49:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775853, 43.335075]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562893.9, "northing": 4798317.6, "time": "09:50:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775349, 43.334809]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562853.3, "northing": 4798287.7, "time": "09:50:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774846, 43.33455]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562812.8, "northing": 4798258.6, "time": "09:50:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774327, 43.334309]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562771.0, "northing": 4798231.4, "time": "09:51:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773804, 43.334067]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562728.8, "northing": 4798204.2, "time": "09:51:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773298, 43.333808]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562688.1, "northing": 4798175.0, "time": "09:51:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772795, 43.333549]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562647.6, "northing": 4798145.9, "time": "09:52:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772288, 43.3333]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562606.7, "northing": 4798117.8, "time": "09:52:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771767, 43.333056]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562564.7, "northing": 4798090.4, "time": "09:52:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771257, 43.332793]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562523.7, "northing": 4798060.8, "time": "09:53:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770766, 43.332526]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562484.1, "northing": 4798030.7, "time": "09:53:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770255, 43.332277]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562443.0, "northing": 4798002.7, "time": "09:53:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76975, 43.332013]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562402.3, "northing": 4797973.0, "time": "09:54:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769261, 43.331741]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562362.9, "northing": 4797942.4, "time": "09:54:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768746, 43.331492]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562321.4, "northing": 4797914.4, "time": "09:54:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76824, 43.331232]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562280.7, "northing": 4797885.2, "time": "09:55:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76774, 43.33097]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562240.4, "northing": 4797855.7, "time": "09:55:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76723, 43.330716]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562199.3, "northing": 4797827.1, "time": "09:55:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766713, 43.330473]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562157.7, "northing": 4797799.7, "time": "09:55:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766186, 43.330236]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562115.2, "northing": 4797773.0, "time": "09:56:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765647, 43.330012]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562071.7, "northing": 4797747.7, "time": "09:56:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765136, 43.32976]}, "properties": {"category": "real_shot", "line": "1041", "easting": 562030.5, "northing": 4797719.4, "time": "09:56:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764651, 43.329485]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561991.5, "northing": 4797688.5, "time": "09:57:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764162, 43.329209]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561952.1, "northing": 4797657.4, "time": "09:57:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763655, 43.328948]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561911.3, "northing": 4797628.1, "time": "09:57:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763147, 43.328696]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561870.4, "northing": 4797599.7, "time": "09:58:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762653, 43.328423]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561830.6, "northing": 4797569.0, "time": "09:58:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762166, 43.328146]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561791.4, "northing": 4797537.9, "time": "09:58:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761683, 43.327865]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561752.5, "northing": 4797506.4, "time": "09:59:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761179, 43.327609]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561711.9, "northing": 4797477.6, "time": "09:59:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760647, 43.32738]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561669.0, "northing": 4797451.7, "time": "09:59:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760104, 43.327156]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561625.2, "northing": 4797426.5, "time": "10:00:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759602, 43.326895]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561584.8, "northing": 4797397.1, "time": "10:00:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759112, 43.326624]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561545.3, "northing": 4797366.6, "time": "10:00:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758594, 43.326379]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561503.6, "northing": 4797339.0, "time": "10:01:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758076, 43.326131]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561461.8, "northing": 4797311.1, "time": "10:01:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757563, 43.325884]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561420.5, "northing": 4797283.3, "time": "10:01:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757023, 43.325662]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561376.9, "northing": 4797258.3, "time": "10:02:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756516, 43.325405]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561336.1, "northing": 4797229.4, "time": "10:02:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756033, 43.325128]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561297.2, "northing": 4797198.2, "time": "10:02:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75553, 43.324864]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561256.7, "northing": 4797168.5, "time": "10:03:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755014, 43.324615]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561215.1, "northing": 4797140.5, "time": "10:03:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754509, 43.324358]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561174.4, "northing": 4797111.6, "time": "10:03:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754006, 43.324097]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561133.9, "northing": 4797082.3, "time": "10:03:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753489, 43.323851]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561092.2, "northing": 4797054.5, "time": "10:04:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752981, 43.3236]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561051.3, "northing": 4797026.3, "time": "10:04:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752485, 43.323327]}, "properties": {"category": "real_shot", "line": "1041", "easting": 561011.3, "northing": 4796995.6, "time": "10:04:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751975, 43.323076]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560970.2, "northing": 4796967.4, "time": "10:05:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75146, 43.322828]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560928.7, "northing": 4796939.5, "time": "10:05:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750963, 43.322562]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560888.7, "northing": 4796909.5, "time": "10:05:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750454, 43.322306]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560847.7, "northing": 4796880.8, "time": "10:06:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749939, 43.32206]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560806.2, "northing": 4796853.1, "time": "10:06:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749438, 43.321794]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560765.8, "northing": 4796823.2, "time": "10:06:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748929, 43.321541]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560724.8, "northing": 4796794.7, "time": "10:07:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748407, 43.321303]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560682.7, "northing": 4796767.9, "time": "10:07:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747894, 43.321048]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560641.4, "northing": 4796739.2, "time": "10:07:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747397, 43.320788]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560601.3, "northing": 4796709.9, "time": "10:08:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746887, 43.320532]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560560.2, "northing": 4796681.1, "time": "10:08:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746379, 43.320276]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560519.3, "northing": 4796652.4, "time": "10:08:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745867, 43.320027]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560478.0, "northing": 4796624.3, "time": "10:08:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745351, 43.319781]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560436.4, "northing": 4796596.6, "time": "10:09:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74482, 43.319548]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560393.6, "northing": 4796570.4, "time": "10:09:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744315, 43.319293]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560352.9, "northing": 4796541.7, "time": "10:09:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743821, 43.31902]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560313.1, "northing": 4796511.0, "time": "10:10:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743319, 43.318756]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560272.7, "northing": 4796481.3, "time": "10:10:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742807, 43.318507]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560231.4, "northing": 4796453.3, "time": "10:10:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742298, 43.318254]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560190.4, "northing": 4796424.8, "time": "10:11:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741802, 43.317985]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560150.4, "northing": 4796394.6, "time": "10:11:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741298, 43.317729]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560109.8, "northing": 4796365.8, "time": "10:11:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740783, 43.317479]}, "properties": {"category": "real_shot", "line": "1041", "easting": 560068.3, "northing": 4796337.7, "time": "10:12:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780126, 43.336879]}, "properties": {"category": "real_shot", "line": "1043", "easting": 563238.4, "northing": 4798521.2, "time": "15:01:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77955, 43.336705]}, "properties": {"category": "real_shot", "line": "1043", "easting": 563191.9, "northing": 4798501.4, "time": "15:02:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779018, 43.33648]}, "properties": {"category": "real_shot", "line": "1043", "easting": 563149.0, "northing": 4798476.1, "time": "15:02:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778559, 43.336175]}, "properties": {"category": "real_shot", "line": "1043", "easting": 563112.1, "northing": 4798441.8, "time": "15:02:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77808, 43.335883]}, "properties": {"category": "real_shot", "line": "1043", "easting": 563073.6, "northing": 4798409.1, "time": "15:03:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777576, 43.335624]}, "properties": {"category": "real_shot", "line": "1043", "easting": 563033.0, "northing": 4798379.9, "time": "15:03:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777056, 43.335385]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562991.1, "northing": 4798353.0, "time": "15:03:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776593, 43.335083]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562953.9, "northing": 4798319.1, "time": "15:03:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77613, 43.334776]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562916.7, "northing": 4798284.6, "time": "15:04:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775635, 43.334507]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562876.8, "northing": 4798254.4, "time": "15:04:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775111, 43.334271]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562834.6, "northing": 4798227.8, "time": "15:04:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774606, 43.334013]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562793.9, "northing": 4798198.8, "time": "15:05:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774121, 43.333731]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562754.9, "northing": 4798167.1, "time": "15:05:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773609, 43.33348]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562713.6, "northing": 4798138.8, "time": "15:05:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773097, 43.333229]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562672.4, "northing": 4798110.6, "time": "15:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772589, 43.332973]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562631.5, "northing": 4798081.8, "time": "15:06:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772082, 43.332718]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562590.6, "northing": 4798053.1, "time": "15:06:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771573, 43.332464]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562549.6, "northing": 4798024.5, "time": "15:06:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77106, 43.332213]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562508.3, "northing": 4797996.2, "time": "15:07:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770548, 43.331963]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562467.0, "northing": 4797968.0, "time": "15:07:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770035, 43.331714]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562425.7, "northing": 4797940.0, "time": "15:07:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769517, 43.331468]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562384.0, "northing": 4797912.3, "time": "15:07:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769001, 43.331221]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562342.4, "northing": 4797884.5, "time": "15:08:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768481, 43.33098]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562300.5, "northing": 4797857.3, "time": "15:08:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767958, 43.33074]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562258.3, "northing": 4797830.3, "time": "15:08:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76745, 43.330485]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562217.4, "northing": 4797801.6, "time": "15:09:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766962, 43.330209]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562178.1, "northing": 4797770.6, "time": "15:09:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766476, 43.329929]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562139.0, "northing": 4797739.1, "time": "15:09:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765979, 43.32966]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562099.0, "northing": 4797708.9, "time": "15:09:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765465, 43.329412]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562057.6, "northing": 4797681.0, "time": "15:10:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764957, 43.329159]}, "properties": {"category": "real_shot", "line": "1043", "easting": 562016.6, "northing": 4797652.5, "time": "15:10:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764463, 43.328888]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561976.9, "northing": 4797622.0, "time": "15:10:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763961, 43.328626]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561936.4, "northing": 4797592.5, "time": "15:11:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763444, 43.32838]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561894.8, "northing": 4797564.9, "time": "15:11:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762946, 43.328114]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561854.7, "northing": 4797534.9, "time": "15:11:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762442, 43.327852]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561814.1, "northing": 4797505.5, "time": "15:11:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761923, 43.327613]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561772.2, "northing": 4797478.5, "time": "15:12:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761415, 43.327358]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561731.3, "northing": 4797449.9, "time": "15:12:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760909, 43.3271]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561690.5, "northing": 4797420.8, "time": "15:12:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760402, 43.326842]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561649.7, "northing": 4797391.8, "time": "15:13:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759893, 43.326589]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561608.7, "northing": 4797363.3, "time": "15:13:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759386, 43.326333]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561567.8, "northing": 4797334.5, "time": "15:13:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758879, 43.326076]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561527.0, "northing": 4797305.6, "time": "15:14:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758374, 43.325818]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561486.3, "northing": 4797276.6, "time": "15:14:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757866, 43.32556]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561445.4, "northing": 4797247.6, "time": "15:14:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757363, 43.325301]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561404.9, "northing": 4797218.4, "time": "15:14:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756856, 43.325045]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561364.0, "northing": 4797189.6, "time": "15:15:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756351, 43.324787]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561323.3, "northing": 4797160.6, "time": "15:15:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755843, 43.324531]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561282.4, "northing": 4797131.8, "time": "15:15:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755338, 43.324275]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561241.7, "northing": 4797103.0, "time": "15:16:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754833, 43.324015]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561201.0, "northing": 4797073.8, "time": "15:16:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754324, 43.32376]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561160.0, "northing": 4797045.0, "time": "15:16:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7538, 43.323522]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561117.8, "northing": 4797018.2, "time": "15:16:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753281, 43.323279]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561075.9, "northing": 4796990.9, "time": "15:17:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752782, 43.323014]}, "properties": {"category": "real_shot", "line": "1043", "easting": 561035.7, "northing": 4796961.1, "time": "15:17:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75227, 43.322763]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560994.5, "northing": 4796932.8, "time": "15:17:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751735, 43.322538]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560951.3, "northing": 4796907.5, "time": "15:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751225, 43.322284]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560910.2, "northing": 4796878.9, "time": "15:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750723, 43.322021]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560869.8, "northing": 4796849.3, "time": "15:18:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750217, 43.321765]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560829.0, "northing": 4796820.5, "time": "15:18:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749702, 43.321517]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560787.5, "northing": 4796792.6, "time": "15:19:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749188, 43.321267]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560746.1, "northing": 4796764.5, "time": "15:19:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748692, 43.321001]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560706.1, "northing": 4796734.5, "time": "15:19:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748193, 43.320736]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560665.9, "northing": 4796704.7, "time": "15:20:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747696, 43.320468]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560625.9, "northing": 4796674.6, "time": "15:20:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747206, 43.320193]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560586.4, "northing": 4796643.7, "time": "15:20:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746702, 43.319934]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560545.8, "northing": 4796614.6, "time": "15:20:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746182, 43.319692]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560503.9, "northing": 4796587.3, "time": "15:21:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745682, 43.319428]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560463.6, "northing": 4796557.7, "time": "15:21:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745178, 43.31917]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560423.0, "northing": 4796528.6, "time": "15:21:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744669, 43.318914]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560382.0, "northing": 4796499.9, "time": "15:22:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744149, 43.318672]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560340.1, "northing": 4796472.6, "time": "15:22:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743629, 43.318431]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560298.1, "northing": 4796445.5, "time": "15:22:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743127, 43.318169]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560257.7, "northing": 4796416.0, "time": "15:22:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742624, 43.317907]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560217.2, "northing": 4796386.6, "time": "15:23:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742119, 43.317649]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560176.5, "northing": 4796357.5, "time": "15:23:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741605, 43.317402]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560135.0, "northing": 4796329.7, "time": "15:23:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741079, 43.317165]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560092.6, "northing": 4796303.0, "time": "15:24:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740582, 43.316899]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560052.6, "northing": 4796273.1, "time": "15:24:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740078, 43.31664]}, "properties": {"category": "real_shot", "line": "1043", "easting": 560012.0, "northing": 4796244.0, "time": "15:24:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739561, 43.316392]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559970.3, "northing": 4796216.1, "time": "15:25:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739042, 43.31615]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559928.4, "northing": 4796188.8, "time": "15:25:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738541, 43.315887]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559888.1, "northing": 4796159.3, "time": "15:25:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73804, 43.315624]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559847.7, "northing": 4796129.7, "time": "15:25:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737519, 43.315383]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559805.7, "northing": 4796102.6, "time": "15:26:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737019, 43.31512]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559765.4, "northing": 4796073.0, "time": "15:26:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736521, 43.314851]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559725.3, "northing": 4796042.8, "time": "15:26:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736004, 43.314608]}, "properties": {"category": "real_shot", "line": "1043", "easting": 559683.6, "northing": 4796015.4, "time": "15:27:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736235, 43.314365]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559702.6, "northing": 4795988.6, "time": "14:06:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736766, 43.314592]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559745.4, "northing": 4796014.2, "time": "14:07:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737366, 43.314749]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559793.9, "northing": 4796032.1, "time": "14:07:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73791, 43.314972]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559837.8, "northing": 4796057.2, "time": "14:07:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738374, 43.315271]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559875.1, "northing": 4796090.8, "time": "14:08:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738893, 43.315513]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559917.0, "northing": 4796118.0, "time": "14:08:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739434, 43.315732]}, "properties": {"category": "real_shot", "line": "1045", "easting": 559960.6, "northing": 4796142.7, "time": "14:08:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739959, 43.315972]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560003.0, "northing": 4796169.7, "time": "14:09:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740445, 43.316249]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560042.1, "northing": 4796200.9, "time": "14:09:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740929, 43.316531]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560081.1, "northing": 4796232.5, "time": "14:09:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741438, 43.316784]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560122.1, "northing": 4796261.0, "time": "14:10:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741978, 43.317003]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560165.7, "northing": 4796285.7, "time": "14:10:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742498, 43.317248]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560207.6, "northing": 4796313.3, "time": "14:10:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743017, 43.317493]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560249.4, "northing": 4796340.8, "time": "14:10:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743543, 43.317726]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560291.9, "northing": 4796367.1, "time": "14:11:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74405, 43.317983]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560332.7, "northing": 4796396.0, "time": "14:11:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744529, 43.31827]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560371.3, "northing": 4796428.2, "time": "14:11:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745038, 43.318523]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560412.3, "northing": 4796456.7, "time": "14:12:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745539, 43.318786]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560452.7, "northing": 4796486.3, "time": "14:12:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74603, 43.319059]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560492.2, "northing": 4796516.9, "time": "14:12:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746512, 43.319342]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560531.0, "northing": 4796548.7, "time": "14:13:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747006, 43.319612]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560570.8, "northing": 4796579.1, "time": "14:13:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747523, 43.319857]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560612.5, "northing": 4796606.6, "time": "14:13:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748054, 43.320087]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560655.3, "northing": 4796632.6, "time": "14:14:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74856, 43.320344]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560696.1, "northing": 4796661.5, "time": "14:14:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749068, 43.3206]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560737.0, "northing": 4796690.3, "time": "14:14:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749579, 43.320853]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560778.2, "northing": 4796718.8, "time": "14:14:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750092, 43.321103]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560819.5, "northing": 4796746.9, "time": "14:15:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750598, 43.321359]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560860.3, "northing": 4796775.7, "time": "14:15:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75111, 43.32161]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560901.6, "northing": 4796803.9, "time": "14:15:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75163, 43.321852]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560943.5, "northing": 4796831.2, "time": "14:16:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752132, 43.322115]}, "properties": {"category": "real_shot", "line": "1045", "easting": 560983.9, "northing": 4796860.8, "time": "14:16:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752632, 43.322379]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561024.2, "northing": 4796890.5, "time": "14:16:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753132, 43.322643]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561064.5, "northing": 4796920.1, "time": "14:17:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753647, 43.322891]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561106.0, "northing": 4796948.0, "time": "14:17:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754166, 43.323134]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561147.8, "northing": 4796975.4, "time": "14:17:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754662, 43.323403]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561187.8, "northing": 4797005.6, "time": "14:17:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755163, 43.323665]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561228.1, "northing": 4797035.1, "time": "14:18:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755685, 43.323901]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561270.2, "northing": 4797061.7, "time": "14:18:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756194, 43.32416]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561311.2, "northing": 4797090.9, "time": "14:18:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756687, 43.324433]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561350.9, "northing": 4797121.5, "time": "14:19:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757202, 43.324678]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561392.4, "northing": 4797149.1, "time": "14:19:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757702, 43.324942]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561432.7, "northing": 4797178.8, "time": "14:19:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758211, 43.325196]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561473.7, "northing": 4797207.4, "time": "14:20:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758732, 43.325437]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561515.7, "northing": 4797234.5, "time": "14:20:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75925, 43.325681]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561557.5, "northing": 4797262.0, "time": "14:20:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759751, 43.325944]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561597.8, "northing": 4797291.6, "time": "14:20:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760254, 43.326206]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561638.3, "northing": 4797321.0, "time": "14:21:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76076, 43.326461]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561679.1, "northing": 4797349.8, "time": "14:21:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76127, 43.326717]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561720.2, "northing": 4797378.5, "time": "14:21:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76177, 43.326979]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561760.5, "northing": 4797408.0, "time": "14:22:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762268, 43.327245]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561800.6, "northing": 4797437.9, "time": "14:22:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762764, 43.327514]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561840.5, "northing": 4797468.2, "time": "14:22:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763262, 43.32778]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561880.6, "northing": 4797498.1, "time": "14:23:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763771, 43.328033]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561921.6, "northing": 4797526.6, "time": "14:23:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764295, 43.328271]}, "properties": {"category": "real_shot", "line": "1045", "easting": 561963.9, "northing": 4797553.4, "time": "14:23:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76482, 43.328509]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562006.2, "northing": 4797580.2, "time": "14:23:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765323, 43.328769]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562046.7, "northing": 4797609.5, "time": "14:24:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765833, 43.329022]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562087.8, "northing": 4797637.9, "time": "14:24:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766363, 43.329254]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562130.5, "northing": 4797664.1, "time": "14:24:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766861, 43.329521]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562170.6, "northing": 4797694.1, "time": "14:25:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76735, 43.329798]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562210.0, "northing": 4797725.2, "time": "14:25:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767865, 43.330043]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562251.5, "northing": 4797752.8, "time": "14:25:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76837, 43.330302]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562292.2, "northing": 4797782.0, "time": "14:26:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76889, 43.330544]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562334.1, "northing": 4797809.2, "time": "14:26:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769413, 43.330785]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562376.2, "northing": 4797836.4, "time": "14:26:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769897, 43.331065]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562415.2, "northing": 4797867.8, "time": "14:26:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770392, 43.331336]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562455.0, "northing": 4797898.3, "time": "14:27:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770897, 43.331593]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562495.7, "northing": 4797927.2, "time": "14:27:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771409, 43.331842]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562537.0, "northing": 4797955.3, "time": "14:27:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771945, 43.332067]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562580.2, "northing": 4797980.6, "time": "14:28:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772471, 43.332304]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562622.6, "northing": 4798007.4, "time": "14:28:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772986, 43.332553]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562664.1, "northing": 4798035.4, "time": "14:28:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773495, 43.332807]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562705.1, "northing": 4798064.0, "time": "14:29:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773997, 43.333068]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562745.5, "northing": 4798093.4, "time": "14:29:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774495, 43.333335]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562785.6, "northing": 4798123.4, "time": "14:29:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774982, 43.333612]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562824.8, "northing": 4798154.5, "time": "14:29:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775464, 43.333895]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562863.6, "northing": 4798186.3, "time": "14:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77595, 43.334174]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562902.7, "northing": 4798217.7, "time": "14:30:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776469, 43.334417]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562944.5, "northing": 4798245.0, "time": "14:30:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77699, 43.334659]}, "properties": {"category": "real_shot", "line": "1045", "easting": 562986.5, "northing": 4798272.3, "time": "14:31:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777537, 43.334871]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563030.6, "northing": 4798296.3, "time": "14:31:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778054, 43.335121]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563072.3, "northing": 4798324.4, "time": "14:31:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778537, 43.335403]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563111.1, "northing": 4798356.1, "time": "14:31:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779032, 43.335671]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563151.0, "northing": 4798386.2, "time": "14:32:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77954, 43.335926]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563191.9, "northing": 4798414.9, "time": "14:32:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780051, 43.336177]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563233.1, "northing": 4798443.2, "time": "14:32:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780571, 43.336418]}, "properties": {"category": "real_shot", "line": "1045", "easting": 563275.0, "northing": 4798470.4, "time": "14:33:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.736725, 43.31385]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559742.8, "northing": 4795931.8, "time": "14:32:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737224, 43.314109]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559783.0, "northing": 4795960.9, "time": "14:33:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737726, 43.314368]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559823.5, "northing": 4795990.0, "time": "14:33:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738231, 43.314628]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559864.2, "northing": 4796019.2, "time": "14:33:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738734, 43.314885]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559904.7, "northing": 4796048.1, "time": "14:33:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739243, 43.315141]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559945.7, "northing": 4796076.9, "time": "14:34:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739734, 43.315415]}, "properties": {"category": "real_shot", "line": "1047", "easting": 559985.3, "northing": 4796107.7, "time": "14:34:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740215, 43.315697]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560024.0, "northing": 4796139.4, "time": "14:34:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740693, 43.315985]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560062.5, "northing": 4796171.7, "time": "14:35:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741189, 43.316253]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560102.4, "northing": 4796201.8, "time": "14:35:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741728, 43.316474]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560145.9, "northing": 4796226.8, "time": "14:35:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742251, 43.316715]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560188.1, "northing": 4796253.9, "time": "14:36:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74275, 43.316979]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560228.3, "northing": 4796283.6, "time": "14:36:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743258, 43.317238]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560269.2, "northing": 4796312.7, "time": "14:36:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743771, 43.317483]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560310.6, "northing": 4796340.3, "time": "14:37:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74431, 43.317705]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560354.1, "northing": 4796365.3, "time": "14:37:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744828, 43.317953]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560395.8, "northing": 4796393.2, "time": "14:37:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745317, 43.318226]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560435.2, "northing": 4796423.9, "time": "14:38:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745821, 43.318484]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560475.8, "northing": 4796452.9, "time": "14:38:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746342, 43.318727]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560517.8, "northing": 4796480.3, "time": "14:38:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746839, 43.318995]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560557.9, "northing": 4796510.4, "time": "14:38:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747335, 43.319263]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560597.8, "northing": 4796540.5, "time": "14:39:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747841, 43.319518]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560638.6, "northing": 4796569.2, "time": "14:39:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748355, 43.319768]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560680.0, "northing": 4796597.4, "time": "14:39:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74887, 43.320015]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560721.5, "northing": 4796625.2, "time": "14:40:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749399, 43.320247]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560764.2, "northing": 4796651.3, "time": "14:40:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74991, 43.320501]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560805.4, "northing": 4796679.9, "time": "14:40:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750409, 43.320766]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560845.6, "northing": 4796709.7, "time": "14:41:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750916, 43.32102]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560886.4, "northing": 4796738.3, "time": "14:41:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751441, 43.321258]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560928.8, "northing": 4796765.1, "time": "14:41:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751945, 43.321518]}, "properties": {"category": "real_shot", "line": "1047", "easting": 560969.4, "northing": 4796794.3, "time": "14:42:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752457, 43.32177]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561010.6, "northing": 4796822.7, "time": "14:42:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752972, 43.322018]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561052.1, "northing": 4796850.6, "time": "14:42:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753485, 43.322267]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561093.5, "northing": 4796878.6, "time": "14:42:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754001, 43.322513]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561135.1, "northing": 4796906.3, "time": "14:43:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754514, 43.322764]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561176.4, "northing": 4796934.6, "time": "14:43:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755026, 43.323012]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561217.7, "northing": 4796962.5, "time": "14:43:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755518, 43.323287]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561257.3, "northing": 4796993.4, "time": "14:44:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756011, 43.323559]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561297.0, "northing": 4797024.0, "time": "14:44:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756505, 43.323827]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561336.8, "northing": 4797054.1, "time": "14:44:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757006, 43.324091]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561377.1, "northing": 4797083.8, "time": "14:45:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75751, 43.324352]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561417.7, "northing": 4797113.1, "time": "14:45:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758016, 43.324607]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561458.5, "northing": 4797141.8, "time": "14:45:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758526, 43.324862]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561499.6, "northing": 4797170.5, "time": "14:46:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759039, 43.325111]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561540.9, "northing": 4797198.5, "time": "14:46:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759524, 43.325391]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561580.0, "northing": 4797230.0, "time": "14:46:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760014, 43.325664]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561619.4, "northing": 4797260.7, "time": "14:46:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76052, 43.325923]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561660.2, "northing": 4797289.8, "time": "14:47:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761029, 43.326175]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561701.2, "northing": 4797318.2, "time": "14:47:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761545, 43.326423]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561742.8, "northing": 4797346.1, "time": "14:47:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762071, 43.326657]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561785.2, "northing": 4797372.5, "time": "14:48:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762595, 43.326898]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561827.4, "northing": 4797399.6, "time": "14:48:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763097, 43.32716]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561867.9, "northing": 4797429.1, "time": "14:48:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763607, 43.32741]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561909.0, "northing": 4797457.3, "time": "14:49:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764137, 43.327643]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561951.7, "northing": 4797483.5, "time": "14:49:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764647, 43.327898]}, "properties": {"category": "real_shot", "line": "1047", "easting": 561992.8, "northing": 4797512.2, "time": "14:49:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765145, 43.328163]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562032.9, "northing": 4797542.0, "time": "14:50:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765643, 43.32843]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562073.0, "northing": 4797572.0, "time": "14:50:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766156, 43.328678]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562114.3, "northing": 4797600.0, "time": "14:50:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766674, 43.328924]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562156.1, "northing": 4797627.7, "time": "14:50:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767178, 43.329183]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562196.7, "northing": 4797656.8, "time": "14:51:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767687, 43.329437]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562237.7, "northing": 4797685.4, "time": "14:51:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768197, 43.329688]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562278.8, "northing": 4797713.7, "time": "14:51:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768722, 43.329926]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562321.1, "northing": 4797740.5, "time": "14:52:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769251, 43.330162]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562363.7, "northing": 4797767.1, "time": "14:52:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769757, 43.330417]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562404.5, "northing": 4797795.8, "time": "14:52:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770264, 43.330677]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562445.3, "northing": 4797825.0, "time": "14:53:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770775, 43.330925]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562486.5, "northing": 4797853.0, "time": "14:53:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771298, 43.331164]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562528.7, "northing": 4797879.9, "time": "14:53:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771798, 43.33143]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562568.9, "northing": 4797909.8, "time": "14:54:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772298, 43.331692]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562609.2, "northing": 4797939.3, "time": "14:54:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772807, 43.331948]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562650.2, "northing": 4797968.1, "time": "14:54:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773321, 43.332196]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562691.6, "northing": 4797996.0, "time": "14:54:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77384, 43.332439]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562733.4, "northing": 4798023.4, "time": "14:55:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774364, 43.332675]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562775.7, "northing": 4798050.0, "time": "14:55:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774876, 43.332929]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562816.9, "northing": 4798078.6, "time": "14:55:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775372, 43.333199]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562856.8, "northing": 4798108.9, "time": "14:56:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775872, 43.333461]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562897.1, "northing": 4798138.4, "time": "14:56:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77638, 43.333718]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562938.0, "northing": 4798167.3, "time": "14:56:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776889, 43.33397]}, "properties": {"category": "real_shot", "line": "1047", "easting": 562979.0, "northing": 4798195.7, "time": "14:57:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777403, 43.33422]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563020.4, "northing": 4798223.8, "time": "14:57:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777912, 43.334474]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563061.4, "northing": 4798252.4, "time": "14:57:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778401, 43.334749]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563100.8, "northing": 4798283.4, "time": "14:58:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77889, 43.335026]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563140.1, "northing": 4798314.5, "time": "14:58:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779389, 43.33529]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563180.3, "northing": 4798344.2, "time": "14:58:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7799, 43.335541]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563221.5, "northing": 4798372.5, "time": "14:59:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780389, 43.335817]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563260.8, "northing": 4798403.5, "time": "14:59:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780877, 43.336093]}, "properties": {"category": "real_shot", "line": "1047", "easting": 563300.1, "northing": 4798434.5, "time": "14:59:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781282, 43.335656]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563333.4, "northing": 4798386.3, "time": "14:35:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780717, 43.335446]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563287.8, "northing": 4798362.5, "time": "14:35:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780157, 43.335264]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563242.6, "northing": 4798341.9, "time": "14:35:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779635, 43.335026]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563200.5, "northing": 4798315.1, "time": "14:36:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779196, 43.334702]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563165.3, "northing": 4798278.7, "time": "14:36:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778764, 43.334362]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563130.6, "northing": 4798240.7, "time": "14:36:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778244, 43.334117]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563088.7, "northing": 4798213.1, "time": "14:37:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777669, 43.333934]}, "properties": {"category": "real_shot", "line": "1049", "easting": 563042.3, "northing": 4798192.3, "time": "14:37:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777143, 43.3337]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562999.9, "northing": 4798165.9, "time": "14:37:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77664, 43.333439]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562959.4, "northing": 4798136.6, "time": "14:38:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776154, 43.333159]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562920.3, "northing": 4798105.1, "time": "14:38:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775658, 43.332892]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562880.3, "northing": 4798075.1, "time": "14:38:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775097, 43.332695]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562835.1, "northing": 4798052.8, "time": "14:39:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774562, 43.332465]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562791.9, "northing": 4798026.8, "time": "14:39:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774059, 43.332209]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562751.4, "northing": 4797998.0, "time": "14:39:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773568, 43.331935]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562711.9, "northing": 4797967.2, "time": "14:39:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773088, 43.331648]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562673.3, "northing": 4797935.0, "time": "14:40:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772622, 43.331348]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562635.8, "northing": 4797901.3, "time": "14:40:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772086, 43.331119]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562592.6, "northing": 4797875.5, "time": "14:40:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771516, 43.330931]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562546.6, "northing": 4797854.2, "time": "14:41:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771018, 43.33067]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562506.5, "northing": 4797824.8, "time": "14:41:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770561, 43.330361]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562469.7, "northing": 4797790.1, "time": "14:41:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770125, 43.330026]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562434.7, "northing": 4797752.6, "time": "14:42:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769602, 43.329782]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562392.6, "northing": 4797725.1, "time": "14:42:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769039, 43.329589]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562347.1, "northing": 4797703.3, "time": "14:42:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768516, 43.32935]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562305.0, "northing": 4797676.3, "time": "14:42:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768001, 43.329104]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562263.5, "northing": 4797648.6, "time": "14:43:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767523, 43.328816]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562225.0, "northing": 4797616.3, "time": "14:43:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767027, 43.328546]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562185.1, "northing": 4797585.9, "time": "14:43:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766466, 43.328348]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562139.8, "northing": 4797563.5, "time": "14:44:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765972, 43.328081]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562100.0, "northing": 4797533.5, "time": "14:44:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76556, 43.327727]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562067.0, "northing": 4797493.9, "time": "14:44:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765136, 43.32737]}, "properties": {"category": "real_shot", "line": "1049", "easting": 562033.0, "northing": 4797453.9, "time": "14:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764618, 43.327128]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561991.2, "northing": 4797426.7, "time": "14:45:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764015, 43.326978]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561942.5, "northing": 4797409.6, "time": "14:45:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763442, 43.326789]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561896.2, "northing": 4797388.2, "time": "14:46:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762946, 43.326526]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561856.3, "northing": 4797358.6, "time": "14:46:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762472, 43.326233]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561818.1, "northing": 4797325.7, "time": "14:46:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761954, 43.325986]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561776.4, "northing": 4797297.9, "time": "14:46:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761427, 43.325753]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561733.9, "northing": 4797271.6, "time": "14:47:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760912, 43.325503]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561692.4, "northing": 4797243.5, "time": "14:47:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760414, 43.325238]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561652.3, "northing": 4797213.7, "time": "14:47:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759913, 43.324975]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561611.9, "northing": 4797184.1, "time": "14:48:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759387, 43.324741]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561569.5, "northing": 4797157.7, "time": "14:48:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758877, 43.324487]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561528.4, "northing": 4797129.1, "time": "14:48:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758375, 43.324228]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561488.0, "northing": 4797100.0, "time": "14:49:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757853, 43.323983]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561445.9, "northing": 4797072.4, "time": "14:49:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757338, 43.323738]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561404.4, "northing": 4797044.8, "time": "14:49:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756835, 43.323477]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561363.9, "northing": 4797015.5, "time": "14:49:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756335, 43.323214]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561323.6, "northing": 4796985.9, "time": "14:50:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755836, 43.322948]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561283.4, "northing": 4796956.0, "time": "14:50:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755321, 43.3227]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561241.9, "northing": 4796928.1, "time": "14:50:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754814, 43.322443]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561201.1, "northing": 4796899.2, "time": "14:51:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754318, 43.322177]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561161.1, "northing": 4796869.2, "time": "14:51:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753815, 43.321916]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561120.6, "northing": 4796839.9, "time": "14:51:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753303, 43.321664]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561079.3, "northing": 4796811.5, "time": "14:51:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752811, 43.321394]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561039.7, "northing": 4796781.2, "time": "14:52:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75232, 43.321118]}, "properties": {"category": "real_shot", "line": "1049", "easting": 561000.2, "northing": 4796750.2, "time": "14:52:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75183, 43.320845]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560960.7, "northing": 4796719.5, "time": "14:52:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751334, 43.320577]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560920.8, "northing": 4796689.4, "time": "14:53:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750834, 43.320312]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560880.5, "northing": 4796659.6, "time": "14:53:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750331, 43.320052]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560840.0, "northing": 4796630.3, "time": "14:53:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749832, 43.319787]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560799.8, "northing": 4796600.5, "time": "14:54:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749325, 43.319531]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560758.9, "northing": 4796571.7, "time": "14:54:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748788, 43.319307]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560715.6, "northing": 4796546.5, "time": "14:54:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748233, 43.319104]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560670.8, "northing": 4796523.5, "time": "14:54:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747739, 43.318834]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560631.0, "northing": 4796493.2, "time": "14:55:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747237, 43.318568]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560590.6, "northing": 4796463.3, "time": "14:55:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746695, 43.318351]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560546.8, "northing": 4796438.8, "time": "14:55:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746168, 43.318115]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560504.3, "northing": 4796412.2, "time": "14:56:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74566, 43.317861]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560463.4, "northing": 4796383.6, "time": "14:56:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745167, 43.317591]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560423.7, "northing": 4796353.3, "time": "14:56:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744671, 43.317321]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560383.7, "northing": 4796323.0, "time": "14:56:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744158, 43.317071]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560342.4, "northing": 4796294.8, "time": "14:57:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743634, 43.316835]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560300.1, "northing": 4796268.2, "time": "14:57:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743138, 43.316567]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560260.2, "northing": 4796238.1, "time": "14:57:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742644, 43.316295]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560220.4, "northing": 4796207.5, "time": "14:58:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74214, 43.316034]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560179.8, "northing": 4796178.2, "time": "14:58:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741632, 43.315783]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560138.8, "northing": 4796149.9, "time": "14:58:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741119, 43.315532]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560097.5, "northing": 4796121.7, "time": "14:58:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740603, 43.315286]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560055.9, "northing": 4796094.0, "time": "14:59:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740109, 43.315017]}, "properties": {"category": "real_shot", "line": "1049", "easting": 560016.1, "northing": 4796063.8, "time": "14:59:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73961, 43.314747]}, "properties": {"category": "real_shot", "line": "1049", "easting": 559975.9, "northing": 4796033.4, "time": "14:59:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739109, 43.314488]}, "properties": {"category": "real_shot", "line": "1049", "easting": 559935.5, "northing": 4796004.3, "time": "15:00:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738595, 43.31424]}, "properties": {"category": "real_shot", "line": "1049", "easting": 559894.1, "northing": 4795976.4, "time": "15:00:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738103, 43.313968]}, "properties": {"category": "real_shot", "line": "1049", "easting": 559854.4, "northing": 4795945.9, "time": "15:00:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737604, 43.313702]}, "properties": {"category": "real_shot", "line": "1049", "easting": 559814.2, "northing": 4795915.9, "time": "15:00:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737091, 43.313451]}, "properties": {"category": "real_shot", "line": "1049", "easting": 559772.9, "northing": 4795887.7, "time": "15:01:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781545, 43.335377]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563355.0, "northing": 4798355.5, "time": "14:05:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78108, 43.335079]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563317.6, "northing": 4798322.0, "time": "14:05:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780605, 43.334788]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563279.4, "northing": 4798289.4, "time": "14:06:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780102, 43.334528]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563238.9, "northing": 4798260.1, "time": "14:06:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779592, 43.334278]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563197.8, "northing": 4798231.9, "time": "14:06:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779089, 43.334016]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563157.3, "northing": 4798202.5, "time": "14:07:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778574, 43.333769]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563115.8, "northing": 4798174.7, "time": "14:07:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778039, 43.333543]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563072.7, "northing": 4798149.2, "time": "14:07:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777536, 43.333282]}, "properties": {"category": "real_shot", "line": "1051", "easting": 563032.2, "northing": 4798119.8, "time": "14:07:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777039, 43.333014]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562992.2, "northing": 4798089.7, "time": "14:08:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776532, 43.332759]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562951.3, "northing": 4798060.9, "time": "14:08:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776026, 43.332501]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562910.6, "northing": 4798031.9, "time": "14:08:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775516, 43.332248]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562869.5, "northing": 4798003.4, "time": "14:09:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775003, 43.331997]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562828.2, "northing": 4797975.2, "time": "14:09:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774491, 43.331747]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562786.9, "northing": 4797947.0, "time": "14:09:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773978, 43.331497]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562745.6, "northing": 4797918.9, "time": "14:09:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773458, 43.331254]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562703.7, "northing": 4797891.5, "time": "14:10:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77296, 43.33099]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562663.6, "northing": 4797861.8, "time": "14:10:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772465, 43.330717]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562623.7, "northing": 4797831.1, "time": "14:10:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77195, 43.330473]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562582.2, "northing": 4797803.6, "time": "14:11:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771452, 43.330207]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562542.1, "northing": 4797773.7, "time": "14:11:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77096, 43.329935]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562502.5, "northing": 4797743.1, "time": "14:11:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770457, 43.329672]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562462.0, "northing": 4797713.5, "time": "14:11:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769949, 43.329416]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562421.1, "northing": 4797684.7, "time": "14:12:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769431, 43.329173]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562379.3, "northing": 4797657.4, "time": "14:12:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768939, 43.328901]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562339.7, "northing": 4797626.8, "time": "14:12:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768439, 43.328636]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562299.5, "northing": 4797597.0, "time": "14:13:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767933, 43.32838]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562258.7, "northing": 4797568.2, "time": "14:13:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767417, 43.328133]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562217.1, "northing": 4797540.4, "time": "14:13:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766907, 43.32788]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562176.0, "northing": 4797511.9, "time": "14:13:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766415, 43.327607]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562136.4, "northing": 4797481.2, "time": "14:14:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765922, 43.327337]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562096.7, "northing": 4797450.9, "time": "14:14:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765426, 43.327068]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562056.8, "northing": 4797420.6, "time": "14:14:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764922, 43.326806]}, "properties": {"category": "real_shot", "line": "1051", "easting": 562016.2, "northing": 4797391.2, "time": "14:15:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7644, 43.326568]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561974.1, "northing": 4797364.3, "time": "14:15:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763884, 43.326322]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561932.5, "northing": 4797336.6, "time": "14:15:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763357, 43.326088]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561890.0, "northing": 4797310.2, "time": "14:15:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762821, 43.325862]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561846.8, "northing": 4797284.8, "time": "14:16:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762308, 43.32561]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561805.5, "northing": 4797256.4, "time": "14:16:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76179, 43.325366]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561763.7, "northing": 4797228.9, "time": "14:16:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76126, 43.325134]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561721.0, "northing": 4797202.8, "time": "14:17:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760732, 43.324902]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561678.4, "northing": 4797176.6, "time": "14:17:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760229, 43.324641]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561637.9, "northing": 4797147.2, "time": "14:17:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759725, 43.32438]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561597.3, "northing": 4797117.9, "time": "14:17:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759213, 43.324131]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561556.0, "northing": 4797089.8, "time": "14:18:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758694, 43.323888]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561514.2, "northing": 4797062.5, "time": "14:18:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758202, 43.323614]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561474.6, "northing": 4797031.7, "time": "14:18:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757723, 43.323328]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561436.0, "northing": 4796999.6, "time": "14:19:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757217, 43.323069]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561395.3, "northing": 4796970.4, "time": "14:19:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756715, 43.32281]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561354.8, "northing": 4796941.3, "time": "14:19:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756223, 43.322538]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561315.2, "northing": 4796910.7, "time": "14:19:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755702, 43.322296]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561273.2, "northing": 4796883.5, "time": "14:20:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755195, 43.322039]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561232.4, "northing": 4796854.6, "time": "14:20:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754699, 43.321771]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561192.4, "northing": 4796824.4, "time": "14:20:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754175, 43.321533]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561150.2, "northing": 4796797.6, "time": "14:21:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753661, 43.321285]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561108.7, "northing": 4796769.7, "time": "14:21:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753157, 43.321025]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561068.1, "northing": 4796740.5, "time": "14:21:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752645, 43.320774]}, "properties": {"category": "real_shot", "line": "1051", "easting": 561026.9, "northing": 4796712.2, "time": "14:21:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752131, 43.320526]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560985.4, "northing": 4796684.3, "time": "14:22:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751614, 43.320279]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560943.8, "northing": 4796656.5, "time": "14:22:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751089, 43.320041]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560901.4, "northing": 4796629.7, "time": "14:22:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750555, 43.319815]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560858.4, "northing": 4796604.2, "time": "14:23:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750064, 43.319544]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560818.8, "northing": 4796573.7, "time": "14:23:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749587, 43.319255]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560780.4, "northing": 4796541.3, "time": "14:23:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749108, 43.318966]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560741.9, "northing": 4796508.9, "time": "14:23:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748624, 43.318686]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560702.9, "northing": 4796477.4, "time": "14:24:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748124, 43.318423]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560662.6, "northing": 4796447.8, "time": "14:24:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747609, 43.318175]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560621.1, "northing": 4796419.9, "time": "14:24:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747077, 43.317946]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560578.2, "northing": 4796394.1, "time": "14:25:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74654, 43.317721]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560534.9, "northing": 4796368.7, "time": "14:25:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746029, 43.317469]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560493.7, "northing": 4796340.4, "time": "14:25:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745495, 43.317242]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560450.6, "northing": 4796314.8, "time": "14:25:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744971, 43.317004]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560408.4, "northing": 4796288.0, "time": "14:26:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74447, 43.316741]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560368.0, "northing": 4796258.4, "time": "14:26:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743962, 43.316484]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560327.1, "northing": 4796229.5, "time": "14:26:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743459, 43.316225]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560286.5, "northing": 4796200.3, "time": "14:27:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742946, 43.315976]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560245.2, "northing": 4796172.3, "time": "14:27:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742424, 43.315736]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560203.1, "northing": 4796145.3, "time": "14:27:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741946, 43.315452]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560164.6, "northing": 4796113.4, "time": "14:27:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741472, 43.315155]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560126.5, "northing": 4796080.1, "time": "14:28:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740992, 43.314872]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560087.8, "northing": 4796048.3, "time": "14:28:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740476, 43.314624]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560046.2, "northing": 4796020.4, "time": "14:28:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.73997, 43.314369]}, "properties": {"category": "real_shot", "line": "1051", "easting": 560005.4, "northing": 4795991.7, "time": "14:29:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739469, 43.314106]}, "properties": {"category": "real_shot", "line": "1051", "easting": 559965.1, "northing": 4795962.1, "time": "14:29:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738963, 43.313848]}, "properties": {"category": "real_shot", "line": "1051", "easting": 559924.3, "northing": 4795933.1, "time": "14:29:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738454, 43.313593]}, "properties": {"category": "real_shot", "line": "1051", "easting": 559883.3, "northing": 4795904.5, "time": "14:29:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737942, 43.313344]}, "properties": {"category": "real_shot", "line": "1051", "easting": 559842.0, "northing": 4795876.4, "time": "14:30:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737425, 43.313098]}, "properties": {"category": "real_shot", "line": "1051", "easting": 559800.3, "northing": 4795848.8, "time": "14:30:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.737734, 43.312779]}, "properties": {"category": "real_shot", "line": "1053", "easting": 559825.7, "northing": 4795813.5, "time": "15:03:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738253, 43.313013]}, "properties": {"category": "real_shot", "line": "1053", "easting": 559867.5, "northing": 4795839.9, "time": "15:03:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738803, 43.313222]}, "properties": {"category": "real_shot", "line": "1053", "easting": 559911.9, "northing": 4795863.5, "time": "15:04:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739311, 43.31348]}, "properties": {"category": "real_shot", "line": "1053", "easting": 559952.9, "northing": 4795892.5, "time": "15:04:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739808, 43.313745]}, "properties": {"category": "real_shot", "line": "1053", "easting": 559992.9, "northing": 4795922.3, "time": "15:04:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740323, 43.313993]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560034.4, "northing": 4795950.2, "time": "15:05:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740848, 43.314227]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560076.8, "northing": 4795976.6, "time": "15:05:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741346, 43.314497]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560116.9, "northing": 4796006.9, "time": "15:05:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741835, 43.314771]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560156.3, "northing": 4796037.7, "time": "15:06:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742335, 43.315035]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560196.6, "northing": 4796067.4, "time": "15:06:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74284, 43.315291]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560237.3, "northing": 4796096.2, "time": "15:06:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743358, 43.315537]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560279.0, "northing": 4796123.9, "time": "15:07:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743835, 43.315826]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560317.4, "northing": 4796156.3, "time": "15:07:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744322, 43.316105]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560356.6, "northing": 4796187.6, "time": "15:07:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744834, 43.316354]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560397.9, "northing": 4796215.7, "time": "15:07:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745367, 43.316582]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560440.9, "northing": 4796241.4, "time": "15:08:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745866, 43.316847]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560481.1, "northing": 4796271.2, "time": "15:08:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746361, 43.317117]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560521.0, "northing": 4796301.5, "time": "15:08:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74687, 43.317371]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560562.0, "northing": 4796330.1, "time": "15:09:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747398, 43.317603]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560604.6, "northing": 4796356.2, "time": "15:09:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747914, 43.317851]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560646.2, "northing": 4796384.2, "time": "15:09:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748416, 43.318113]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560686.6, "northing": 4796413.6, "time": "15:10:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748912, 43.318381]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560726.6, "northing": 4796443.7, "time": "15:10:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74942, 43.318635]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560767.5, "northing": 4796472.3, "time": "15:10:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749941, 43.318876]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560809.5, "northing": 4796499.5, "time": "15:10:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750439, 43.319145]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560849.6, "northing": 4796529.7, "time": "15:11:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750944, 43.319402]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560890.3, "northing": 4796558.6, "time": "15:11:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751461, 43.319645]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560932.0, "northing": 4796586.0, "time": "15:11:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75196, 43.319912]}, "properties": {"category": "real_shot", "line": "1053", "easting": 560972.2, "northing": 4796616.0, "time": "15:12:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75246, 43.320174]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561012.5, "northing": 4796645.5, "time": "15:12:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752974, 43.320424]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561053.9, "northing": 4796673.6, "time": "15:12:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753497, 43.320661]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561096.1, "northing": 4796700.3, "time": "15:12:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754009, 43.320915]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561137.3, "northing": 4796728.9, "time": "15:13:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754515, 43.321172]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561178.1, "northing": 4796757.8, "time": "15:13:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755017, 43.321433]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561218.5, "northing": 4796787.1, "time": "15:13:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755519, 43.321694]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561259.0, "northing": 4796816.5, "time": "15:14:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75602, 43.321958]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561299.3, "northing": 4796846.2, "time": "15:14:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756528, 43.322211]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561340.3, "northing": 4796874.6, "time": "15:14:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757049, 43.322452]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561382.3, "northing": 4796901.8, "time": "15:15:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75759, 43.32267]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561425.9, "northing": 4796926.4, "time": "15:15:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758104, 43.322924]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561467.3, "northing": 4796955.0, "time": "15:15:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758604, 43.323188]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561507.6, "northing": 4796984.7, "time": "15:15:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759118, 43.323434]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561549.0, "northing": 4797012.4, "time": "15:16:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759643, 43.323671]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561591.4, "northing": 4797039.1, "time": "15:16:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760134, 43.323947]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561630.9, "northing": 4797070.1, "time": "15:16:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760622, 43.324222]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561670.2, "northing": 4797101.0, "time": "15:17:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761123, 43.324485]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561710.5, "northing": 4797130.6, "time": "15:17:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761633, 43.324738]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561751.6, "northing": 4797159.0, "time": "15:17:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762154, 43.324979]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561793.6, "northing": 4797186.2, "time": "15:17:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762682, 43.325212]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561836.2, "northing": 4797212.5, "time": "15:18:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763196, 43.325461]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561877.6, "northing": 4797240.5, "time": "15:18:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7637, 43.325722]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561918.2, "northing": 4797269.8, "time": "15:18:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7642, 43.325986]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561958.5, "northing": 4797299.5, "time": "15:19:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764703, 43.326246]}, "properties": {"category": "real_shot", "line": "1053", "easting": 561999.0, "northing": 4797328.8, "time": "15:19:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765212, 43.3265]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562040.0, "northing": 4797357.4, "time": "15:19:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765728, 43.326745]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562081.6, "northing": 4797385.0, "time": "15:19:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766243, 43.326995]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562123.1, "northing": 4797413.1, "time": "15:20:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766742, 43.327259]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562163.3, "northing": 4797442.8, "time": "15:20:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76724, 43.327524]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562203.4, "northing": 4797472.6, "time": "15:20:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767736, 43.327793]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562243.3, "northing": 4797502.9, "time": "15:21:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768238, 43.328054]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562283.8, "northing": 4797532.2, "time": "15:21:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768749, 43.328307]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562324.9, "northing": 4797560.7, "time": "15:21:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769261, 43.328556]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562366.2, "northing": 4797588.7, "time": "15:21:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769783, 43.328797]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562408.3, "northing": 4797615.9, "time": "15:22:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77032, 43.329021]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562451.6, "northing": 4797641.2, "time": "15:22:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770856, 43.329248]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562494.8, "northing": 4797666.8, "time": "15:22:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771333, 43.329537]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562533.2, "northing": 4797699.2, "time": "15:23:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771794, 43.329843]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562570.2, "northing": 4797733.6, "time": "15:23:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772292, 43.330108]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562610.3, "northing": 4797763.3, "time": "15:23:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772782, 43.330382]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562649.8, "northing": 4797794.1, "time": "15:24:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773282, 43.330645]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562690.0, "northing": 4797823.7, "time": "15:24:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7738, 43.33089]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562731.8, "northing": 4797851.3, "time": "15:24:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774304, 43.331149]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562772.4, "northing": 4797880.5, "time": "15:24:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77483, 43.331383]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562814.8, "northing": 4797906.9, "time": "15:25:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775364, 43.331614]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562857.8, "northing": 4797932.9, "time": "15:25:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775869, 43.331873]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562898.5, "northing": 4797962.0, "time": "15:25:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776379, 43.332126]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562939.6, "northing": 4797990.5, "time": "15:26:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776903, 43.332362]}, "properties": {"category": "real_shot", "line": "1053", "easting": 562981.8, "northing": 4798017.1, "time": "15:26:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777439, 43.332588]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563025.0, "northing": 4798042.6, "time": "15:26:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777941, 43.33285]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563065.5, "northing": 4798072.1, "time": "15:26:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778435, 43.333122]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563105.2, "northing": 4798102.7, "time": "15:27:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778928, 43.333392]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563144.9, "northing": 4798133.1, "time": "15:27:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77943, 43.333653]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563185.3, "northing": 4798162.4, "time": "15:27:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779946, 43.3339]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563226.9, "northing": 4798190.2, "time": "15:28:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780469, 43.334137]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563269.1, "northing": 4798217.0, "time": "15:28:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780977, 43.334395]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563310.0, "northing": 4798246.0, "time": "15:28:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78148, 43.334656]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563350.5, "northing": 4798275.4, "time": "15:28:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781994, 43.334904]}, "properties": {"category": "real_shot", "line": "1053", "easting": 563391.9, "northing": 4798303.3, "time": "15:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738179, 43.312307]}, "properties": {"category": "real_shot", "line": "1055", "easting": 559862.2, "northing": 4795761.4, "time": "13:36:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738726, 43.312526]}, "properties": {"category": "real_shot", "line": "1055", "easting": 559906.4, "northing": 4795786.2, "time": "13:36:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739147, 43.312863]}, "properties": {"category": "real_shot", "line": "1055", "easting": 559940.2, "northing": 4795823.9, "time": "13:36:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739586, 43.313188]}, "properties": {"category": "real_shot", "line": "1055", "easting": 559975.5, "northing": 4795860.3, "time": "13:37:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740087, 43.313448]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560015.8, "northing": 4795889.5, "time": "13:37:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740607, 43.313692]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560057.8, "northing": 4795917.0, "time": "13:37:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741128, 43.313932]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560099.8, "northing": 4795944.0, "time": "13:38:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741655, 43.314168]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560142.3, "northing": 4795970.6, "time": "13:38:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742151, 43.314438]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560182.2, "northing": 4796000.9, "time": "13:38:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742645, 43.314705]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560222.0, "northing": 4796031.0, "time": "13:39:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743172, 43.314938]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560264.5, "northing": 4796057.2, "time": "13:39:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743684, 43.315193]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560305.8, "northing": 4796085.9, "time": "13:39:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744191, 43.315447]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560346.7, "northing": 4796114.5, "time": "13:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744721, 43.315678]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560389.4, "northing": 4796140.5, "time": "13:40:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745243, 43.315918]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560431.5, "northing": 4796167.6, "time": "13:40:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745743, 43.316185]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560471.8, "northing": 4796197.6, "time": "13:41:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746223, 43.316469]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560510.4, "northing": 4796229.4, "time": "13:41:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74672, 43.316734]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560550.5, "northing": 4796259.2, "time": "13:41:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747241, 43.316976]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560592.5, "northing": 4796286.5, "time": "13:41:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747767, 43.317214]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560634.9, "northing": 4796313.3, "time": "13:42:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748276, 43.317467]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560675.9, "northing": 4796341.8, "time": "13:42:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748793, 43.317711]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560717.6, "northing": 4796369.3, "time": "13:42:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749319, 43.317948]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560760.0, "northing": 4796396.0, "time": "13:43:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749851, 43.318176]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560802.9, "northing": 4796421.7, "time": "13:43:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750382, 43.318409]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560845.7, "northing": 4796447.9, "time": "13:43:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750873, 43.318683]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560885.3, "northing": 4796478.7, "time": "13:44:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75135, 43.31897]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560923.7, "northing": 4796510.9, "time": "13:44:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751825, 43.31926]}, "properties": {"category": "real_shot", "line": "1055", "easting": 560961.9, "northing": 4796543.5, "time": "13:44:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75232, 43.319531]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561001.8, "northing": 4796573.9, "time": "13:45:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752841, 43.319769]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561043.8, "northing": 4796600.8, "time": "13:45:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753345, 43.320029]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561084.4, "northing": 4796630.0, "time": "13:45:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753848, 43.320291]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561124.9, "northing": 4796659.4, "time": "13:46:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754359, 43.320542]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561166.1, "northing": 4796687.7, "time": "13:46:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754878, 43.320785]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561207.9, "northing": 4796715.1, "time": "13:46:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755404, 43.321021]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561250.3, "northing": 4796741.7, "time": "13:46:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755909, 43.32128]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561291.0, "northing": 4796770.8, "time": "13:47:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756409, 43.321544]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561331.3, "northing": 4796800.5, "time": "13:47:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756914, 43.321803]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561372.0, "northing": 4796829.6, "time": "13:47:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757428, 43.322052]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561413.4, "northing": 4796857.6, "time": "13:48:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757946, 43.322294]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561455.2, "northing": 4796884.9, "time": "13:48:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758476, 43.322526]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561497.9, "northing": 4796911.1, "time": "13:48:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758986, 43.32278]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561539.0, "northing": 4796939.6, "time": "13:49:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759456, 43.323077]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561576.8, "northing": 4796973.0, "time": "13:49:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759931, 43.323367]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561615.0, "northing": 4797005.5, "time": "13:49:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760447, 43.323609]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561656.6, "northing": 4797032.8, "time": "13:50:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760952, 43.323871]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561697.3, "northing": 4797062.3, "time": "13:50:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761467, 43.324119]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561738.8, "northing": 4797090.2, "time": "13:50:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761995, 43.324353]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561781.4, "northing": 4797116.6, "time": "13:51:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762496, 43.324617]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561821.7, "northing": 4797146.3, "time": "13:51:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762997, 43.324878]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561862.1, "northing": 4797175.6, "time": "13:51:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763524, 43.325113]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561904.6, "northing": 4797202.1, "time": "13:51:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764039, 43.325362]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561946.1, "northing": 4797230.1, "time": "13:52:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764547, 43.325616]}, "properties": {"category": "real_shot", "line": "1055", "easting": 561987.0, "northing": 4797258.7, "time": "13:52:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765057, 43.32587]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562028.1, "northing": 4797287.3, "time": "13:52:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765564, 43.326125]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562068.9, "northing": 4797316.0, "time": "13:53:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76608, 43.326372]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562110.5, "northing": 4797343.8, "time": "13:53:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766603, 43.32661]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562152.7, "northing": 4797370.6, "time": "13:53:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76713, 43.326846]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562195.2, "northing": 4797397.2, "time": "13:54:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767619, 43.327122]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562234.5, "northing": 4797428.3, "time": "13:54:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7681, 43.327408]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562273.2, "northing": 4797460.4, "time": "13:54:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768585, 43.327685]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562312.3, "northing": 4797491.5, "time": "13:55:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76908, 43.327956]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562352.1, "northing": 4797522.0, "time": "13:55:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769576, 43.328222]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562392.1, "northing": 4797551.9, "time": "13:55:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770089, 43.328473]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562433.4, "northing": 4797580.1, "time": "13:56:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7706, 43.328725]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562474.6, "northing": 4797608.5, "time": "13:56:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771086, 43.329003]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562513.7, "northing": 4797639.7, "time": "13:56:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771598, 43.329255]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562554.9, "northing": 4797668.1, "time": "13:56:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772153, 43.329458]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562599.7, "northing": 4797691.1, "time": "13:57:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77269, 43.329684]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562643.0, "northing": 4797716.6, "time": "13:57:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773216, 43.329922]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562685.4, "northing": 4797743.4, "time": "13:57:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773692, 43.330211]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562723.7, "northing": 4797775.8, "time": "13:58:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774167, 43.330501]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562761.9, "northing": 4797808.4, "time": "13:58:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774661, 43.33077]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562801.7, "northing": 4797838.7, "time": "13:58:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775172, 43.33102]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562842.9, "northing": 4797866.8, "time": "13:59:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775691, 43.331264]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562884.7, "northing": 4797894.3, "time": "13:59:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776185, 43.331536]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562924.5, "northing": 4797924.9, "time": "13:59:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776685, 43.3318]}, "properties": {"category": "real_shot", "line": "1055", "easting": 562964.7, "northing": 4797954.6, "time": "14:00:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777219, 43.332025]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563007.8, "northing": 4797980.0, "time": "14:00:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777739, 43.33227]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563049.7, "northing": 4798007.5, "time": "14:00:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778257, 43.332514]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563091.4, "northing": 4798035.0, "time": "14:01:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778785, 43.332748]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563134.0, "northing": 4798061.4, "time": "14:01:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779301, 43.332995]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563175.6, "northing": 4798089.3, "time": "14:01:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7798, 43.333261]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563215.7, "northing": 4798119.2, "time": "14:02:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780307, 43.333517]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563256.6, "northing": 4798148.0, "time": "14:02:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78082, 43.333767]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563297.9, "northing": 4798176.1, "time": "14:02:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781339, 43.334008]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563339.7, "northing": 4798203.3, "time": "14:02:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781844, 43.334268]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563380.4, "northing": 4798232.6, "time": "14:03:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782324, 43.334554]}, "properties": {"category": "real_shot", "line": "1055", "easting": 563419.0, "northing": 4798264.7, "time": "14:03:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782604, 43.334246]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563442.0, "northing": 4798230.7, "time": "15:31:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782141, 43.333949]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563404.8, "northing": 4798197.4, "time": "15:31:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781655, 43.333674]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563365.7, "northing": 4798166.4, "time": "15:31:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781141, 43.333422]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563324.3, "northing": 4798138.1, "time": "15:32:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780603, 43.333203]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563280.9, "northing": 4798113.3, "time": "15:32:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780094, 43.332949]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563239.9, "northing": 4798084.7, "time": "15:32:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779595, 43.332683]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563199.7, "northing": 4798054.8, "time": "15:33:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779082, 43.332434]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563158.4, "northing": 4798026.8, "time": "15:33:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778588, 43.332164]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563118.6, "northing": 4797996.4, "time": "15:33:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778098, 43.331888]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563079.2, "northing": 4797965.4, "time": "15:34:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777605, 43.331618]}, "properties": {"category": "real_shot", "line": "1057", "easting": 563039.5, "northing": 4797935.0, "time": "15:34:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777107, 43.331354]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562999.4, "northing": 4797905.3, "time": "15:34:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776599, 43.331095]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562958.5, "northing": 4797876.2, "time": "15:35:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776093, 43.330839]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562917.7, "northing": 4797847.4, "time": "15:35:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775576, 43.330594]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562876.1, "northing": 4797819.8, "time": "15:35:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775082, 43.330323]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562836.3, "northing": 4797789.3, "time": "15:35:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774583, 43.330056]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562796.1, "northing": 4797759.3, "time": "15:36:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77407, 43.329808]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562754.8, "northing": 4797731.4, "time": "15:36:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773565, 43.329551]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562714.1, "northing": 4797702.4, "time": "15:36:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773061, 43.329291]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562673.5, "northing": 4797673.2, "time": "15:37:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772556, 43.329032]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562632.8, "northing": 4797644.1, "time": "15:37:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772039, 43.328786]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562591.2, "northing": 4797616.3, "time": "15:37:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771502, 43.328561]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562547.9, "northing": 4797591.0, "time": "15:38:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770968, 43.328336]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562504.8, "northing": 4797565.6, "time": "15:38:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770444, 43.328095]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562462.6, "northing": 4797538.4, "time": "15:38:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769922, 43.327855]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562420.5, "northing": 4797511.4, "time": "15:39:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769402, 43.327613]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562378.6, "northing": 4797484.1, "time": "15:39:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768881, 43.327372]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562336.6, "northing": 4797457.0, "time": "15:39:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768387, 43.327103]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562296.8, "northing": 4797426.7, "time": "15:39:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767897, 43.326828]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562257.4, "northing": 4797395.8, "time": "15:40:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767402, 43.326558]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562217.5, "northing": 4797365.4, "time": "15:40:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766892, 43.326305]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562176.4, "northing": 4797337.0, "time": "15:40:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766374, 43.326062]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562134.7, "northing": 4797309.6, "time": "15:41:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765872, 43.3258]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562094.2, "northing": 4797280.1, "time": "15:41:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76538, 43.325527]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562054.6, "northing": 4797249.5, "time": "15:41:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764877, 43.325265]}, "properties": {"category": "real_shot", "line": "1057", "easting": 562014.1, "northing": 4797220.0, "time": "15:42:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764366, 43.325016]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561972.9, "northing": 4797191.9, "time": "15:42:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763857, 43.324762]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561931.9, "northing": 4797163.4, "time": "15:42:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763366, 43.324487]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561892.4, "northing": 4797132.4, "time": "15:42:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762865, 43.324225]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561852.0, "northing": 4797103.0, "time": "15:43:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762353, 43.323974]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561810.8, "northing": 4797074.7, "time": "15:43:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761837, 43.323726]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561769.2, "northing": 4797046.8, "time": "15:43:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761333, 43.323468]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561728.6, "northing": 4797017.8, "time": "15:44:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760839, 43.323197]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561688.8, "northing": 4796987.3, "time": "15:44:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760342, 43.322929]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561648.8, "northing": 4796957.2, "time": "15:44:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759841, 43.322668]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561608.4, "northing": 4796927.8, "time": "15:45:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759333, 43.322412]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561567.5, "northing": 4796899.0, "time": "15:45:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758824, 43.322159]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561526.5, "northing": 4796870.6, "time": "15:45:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758307, 43.321913]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561484.8, "northing": 4796842.9, "time": "15:46:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757788, 43.321669]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561443.0, "northing": 4796815.4, "time": "15:46:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757288, 43.321406]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561402.7, "northing": 4796785.8, "time": "15:46:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756775, 43.321155]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561361.4, "northing": 4796757.5, "time": "15:46:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756251, 43.320918]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561319.1, "northing": 4796730.9, "time": "15:47:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755742, 43.320663]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561278.1, "northing": 4796702.2, "time": "15:47:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75523, 43.320414]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561236.8, "northing": 4796674.1, "time": "15:47:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754704, 43.320177]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561194.4, "northing": 4796647.4, "time": "15:48:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754176, 43.319943]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561151.8, "northing": 4796621.1, "time": "15:48:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753639, 43.319717]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561108.5, "northing": 4796595.6, "time": "15:48:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753113, 43.319482]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561066.1, "northing": 4796569.1, "time": "15:49:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752622, 43.319211]}, "properties": {"category": "real_shot", "line": "1057", "easting": 561026.6, "northing": 4796538.6, "time": "15:49:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752161, 43.318904]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560989.5, "northing": 4796504.2, "time": "15:49:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751683, 43.318616]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560951.0, "northing": 4796471.8, "time": "15:49:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751179, 43.318359]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560910.4, "northing": 4796442.9, "time": "15:50:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750681, 43.318092]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560870.3, "northing": 4796412.9, "time": "15:50:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750186, 43.31782]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560830.4, "northing": 4796382.4, "time": "15:50:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749673, 43.317573]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560789.1, "northing": 4796354.6, "time": "15:51:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749146, 43.317339]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560746.6, "northing": 4796328.2, "time": "15:51:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748624, 43.317097]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560704.5, "northing": 4796300.9, "time": "15:51:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748096, 43.316865]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560661.9, "northing": 4796274.8, "time": "15:52:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747553, 43.316646]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560618.1, "northing": 4796250.1, "time": "15:52:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747054, 43.316382]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560577.9, "northing": 4796220.4, "time": "15:52:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74657, 43.316099]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560538.9, "northing": 4796188.6, "time": "15:53:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746067, 43.315839]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560498.4, "northing": 4796159.4, "time": "15:53:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745555, 43.31559]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560457.1, "northing": 4796131.4, "time": "15:53:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745063, 43.315318]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560417.5, "northing": 4796100.8, "time": "15:53:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744569, 43.315047]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560377.7, "northing": 4796070.3, "time": "15:54:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744069, 43.314781]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560337.4, "northing": 4796040.4, "time": "15:54:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743572, 43.314516]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560297.4, "northing": 4796010.6, "time": "15:54:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743061, 43.314265]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560256.2, "northing": 4795982.4, "time": "15:55:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742557, 43.314005]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560215.6, "northing": 4795953.2, "time": "15:55:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742062, 43.313736]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560175.7, "northing": 4795922.9, "time": "15:55:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741559, 43.313474]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560135.2, "northing": 4795893.5, "time": "15:55:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741053, 43.313219]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560094.4, "northing": 4795864.8, "time": "15:56:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740526, 43.312984]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560051.9, "northing": 4795838.3, "time": "15:56:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740006, 43.31274]}, "properties": {"category": "real_shot", "line": "1057", "easting": 560010.0, "northing": 4795810.8, "time": "15:56:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739498, 43.312486]}, "properties": {"category": "real_shot", "line": "1057", "easting": 559969.0, "northing": 4795782.3, "time": "15:57:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738972, 43.31225]}, "properties": {"category": "real_shot", "line": "1057", "easting": 559926.6, "northing": 4795755.7, "time": "15:57:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738438, 43.312024]}, "properties": {"category": "real_shot", "line": "1057", "easting": 559883.5, "northing": 4795730.2, "time": "15:57:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782947, 43.333887]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563470.2, "northing": 4798191.1, "time": "13:09:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782461, 43.333605]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563431.1, "northing": 4798159.4, "time": "13:09:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781948, 43.333359]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563389.8, "northing": 4798131.7, "time": "13:09:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781453, 43.333094]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563349.9, "northing": 4798101.9, "time": "13:09:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780956, 43.332826]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563309.9, "northing": 4798071.7, "time": "13:10:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780443, 43.332578]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563268.6, "northing": 4798043.8, "time": "13:10:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779946, 43.33231]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563228.6, "northing": 4798013.7, "time": "13:10:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779453, 43.332038]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563188.9, "northing": 4797983.1, "time": "13:11:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778952, 43.331777]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563148.5, "northing": 4797953.7, "time": "13:11:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778428, 43.331537]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563106.3, "northing": 4797926.7, "time": "13:11:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777918, 43.331287]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563065.2, "northing": 4797898.5, "time": "13:11:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777428, 43.33101]}, "properties": {"category": "real_shot", "line": "1059", "easting": 563025.8, "northing": 4797867.4, "time": "13:12:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776941, 43.330731]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562986.6, "northing": 4797836.0, "time": "13:12:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776448, 43.33046]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562946.9, "northing": 4797805.6, "time": "13:12:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775935, 43.330211]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562905.6, "northing": 4797777.5, "time": "13:13:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775424, 43.329958]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562864.4, "northing": 4797749.1, "time": "13:13:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774914, 43.329707]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562823.3, "northing": 4797720.8, "time": "13:13:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774387, 43.329471]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562780.8, "northing": 4797694.2, "time": "13:13:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77387, 43.329226]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562739.2, "northing": 4797666.6, "time": "13:14:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773361, 43.328971]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562698.2, "northing": 4797637.9, "time": "13:14:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772837, 43.328734]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562655.9, "northing": 4797611.2, "time": "13:14:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772318, 43.32849]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562614.1, "northing": 4797583.7, "time": "13:15:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771825, 43.328219]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562574.4, "northing": 4797553.2, "time": "13:15:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77132, 43.327959]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562533.7, "northing": 4797524.0, "time": "13:15:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7708, 43.327718]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562491.8, "northing": 4797496.8, "time": "13:15:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77029, 43.327465]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562450.7, "northing": 4797468.3, "time": "13:16:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769783, 43.327211]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562409.9, "northing": 4797439.7, "time": "13:16:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769299, 43.326928]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562370.9, "northing": 4797408.0, "time": "13:16:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768799, 43.326663]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562330.7, "northing": 4797378.2, "time": "13:17:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768297, 43.326403]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562290.2, "northing": 4797348.9, "time": "13:17:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767789, 43.326147]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562249.3, "northing": 4797320.1, "time": "13:17:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767278, 43.325897]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562208.1, "northing": 4797291.9, "time": "13:17:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766759, 43.325653]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562166.3, "northing": 4797264.5, "time": "13:18:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766262, 43.325386]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562126.3, "northing": 4797234.4, "time": "13:18:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765765, 43.325116]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562086.3, "northing": 4797204.1, "time": "13:18:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765264, 43.324855]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562045.9, "northing": 4797174.7, "time": "13:18:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764749, 43.324608]}, "properties": {"category": "real_shot", "line": "1059", "easting": 562004.4, "northing": 4797146.9, "time": "13:19:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764223, 43.324371]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561962.0, "northing": 4797120.2, "time": "13:19:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763704, 43.324128]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561920.2, "northing": 4797092.8, "time": "13:19:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76321, 43.323857]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561880.4, "northing": 4797062.4, "time": "13:20:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762706, 43.323598]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561839.8, "northing": 4797033.2, "time": "13:20:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762197, 43.323344]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561798.8, "northing": 4797004.6, "time": "13:20:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761682, 43.323098]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561757.3, "northing": 4796976.9, "time": "13:20:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761164, 43.322852]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561715.5, "northing": 4796949.2, "time": "13:21:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760643, 43.32261]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561673.5, "northing": 4796922.0, "time": "13:21:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760114, 43.322378]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561630.9, "northing": 4796895.8, "time": "13:21:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759609, 43.322121]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561590.2, "northing": 4796866.9, "time": "13:22:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759118, 43.321847]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561550.6, "northing": 4796836.1, "time": "13:22:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758614, 43.321587]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561510.0, "northing": 4796806.9, "time": "13:22:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758107, 43.321331]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561469.2, "northing": 4796778.1, "time": "13:22:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757593, 43.321081]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561427.8, "northing": 4796749.9, "time": "13:23:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757081, 43.320832]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561386.5, "northing": 4796721.9, "time": "13:23:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756588, 43.320559]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561346.8, "northing": 4796691.2, "time": "13:23:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756094, 43.320289]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561307.0, "northing": 4796660.9, "time": "13:24:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755578, 43.320044]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561265.4, "northing": 4796633.3, "time": "13:24:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755069, 43.319789]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561224.4, "northing": 4796604.6, "time": "13:24:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754576, 43.319518]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561184.7, "northing": 4796574.1, "time": "13:24:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754077, 43.319253]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561144.5, "northing": 4796544.4, "time": "13:25:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753568, 43.318997]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561103.5, "northing": 4796515.6, "time": "13:25:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753056, 43.318747]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561062.2, "northing": 4796487.4, "time": "13:25:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752538, 43.318503]}, "properties": {"category": "real_shot", "line": "1059", "easting": 561020.5, "northing": 4796459.9, "time": "13:26:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75201, 43.318269]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560977.9, "northing": 4796433.6, "time": "13:26:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751492, 43.318027]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560936.1, "northing": 4796406.3, "time": "13:26:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751, 43.317757]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560896.5, "northing": 4796376.0, "time": "13:26:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750508, 43.317478]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560856.9, "northing": 4796344.6, "time": "13:27:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750017, 43.317207]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560817.3, "northing": 4796314.2, "time": "13:27:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749508, 43.316953]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560776.3, "northing": 4796285.6, "time": "13:27:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74898, 43.316721]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560733.7, "northing": 4796259.4, "time": "13:28:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748465, 43.31647]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560692.2, "northing": 4796231.2, "time": "13:28:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747952, 43.316221]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560650.9, "northing": 4796203.2, "time": "13:28:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747421, 43.315993]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560608.0, "northing": 4796177.5, "time": "13:28:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746908, 43.315742]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560566.7, "northing": 4796149.2, "time": "13:29:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746408, 43.315479]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560526.4, "northing": 4796119.6, "time": "13:29:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745908, 43.315215]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560486.1, "northing": 4796090.0, "time": "13:29:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745403, 43.314957]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560445.4, "northing": 4796060.9, "time": "13:30:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744896, 43.3147]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560404.6, "northing": 4796032.0, "time": "13:30:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744385, 43.314448]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560363.4, "northing": 4796003.7, "time": "13:30:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743879, 43.31419]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560322.6, "northing": 4795974.7, "time": "13:30:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74337, 43.313936]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560281.6, "northing": 4795946.1, "time": "13:31:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742864, 43.313677]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560240.8, "northing": 4795917.0, "time": "13:31:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74236, 43.313418]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560200.2, "northing": 4795887.8, "time": "13:31:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741858, 43.313159]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560159.7, "northing": 4795858.7, "time": "13:32:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741354, 43.312899]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560119.1, "northing": 4795829.5, "time": "13:32:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740854, 43.312636]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560078.8, "northing": 4795799.9, "time": "13:32:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740353, 43.312372]}, "properties": {"category": "real_shot", "line": "1059", "easting": 560038.5, "northing": 4795770.2, "time": "13:32:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739844, 43.312119]}, "properties": {"category": "real_shot", "line": "1059", "easting": 559997.4, "northing": 4795741.8, "time": "13:33:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739331, 43.311868]}, "properties": {"category": "real_shot", "line": "1059", "easting": 559956.1, "northing": 4795713.5, "time": "13:33:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.738812, 43.311625]}, "properties": {"category": "real_shot", "line": "1059", "easting": 559914.2, "northing": 4795686.2, "time": "13:33:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783347, 43.333466]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563503.1, "northing": 4798144.6, "time": "06:37:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782861, 43.333187]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563464.0, "northing": 4798113.3, "time": "06:37:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782357, 43.332929]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563423.4, "northing": 4798084.2, "time": "06:37:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781885, 43.332637]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563385.4, "northing": 4798051.4, "time": "06:38:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781384, 43.332372]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563345.1, "northing": 4798021.6, "time": "06:38:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780877, 43.332117]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563304.2, "northing": 4797992.9, "time": "06:38:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780353, 43.331879]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563262.0, "northing": 4797966.1, "time": "06:39:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779845, 43.331622]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563221.1, "northing": 4797937.2, "time": "06:39:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779345, 43.331359]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563180.8, "northing": 4797907.6, "time": "06:39:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778841, 43.331099]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563140.2, "northing": 4797878.3, "time": "06:39:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778318, 43.33086]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563098.1, "northing": 4797851.4, "time": "06:40:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777802, 43.330614]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563056.5, "northing": 4797823.7, "time": "06:40:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777292, 43.33036]}, "properties": {"category": "real_shot", "line": "1061", "easting": 563015.4, "northing": 4797795.1, "time": "06:40:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776779, 43.33011]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562974.1, "northing": 4797767.0, "time": "06:41:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776259, 43.329867]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562932.2, "northing": 4797739.6, "time": "06:41:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775732, 43.329633]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562889.7, "northing": 4797713.2, "time": "06:41:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775232, 43.329369]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562849.4, "northing": 4797683.5, "time": "06:42:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774735, 43.329101]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562809.4, "northing": 4797653.4, "time": "06:42:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77422, 43.328855]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562767.9, "northing": 4797625.7, "time": "06:42:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773716, 43.328595]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562727.3, "northing": 4797596.4, "time": "06:43:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773212, 43.328336]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562686.7, "northing": 4797567.2, "time": "06:43:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77271, 43.328074]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562646.3, "northing": 4797537.8, "time": "06:43:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772207, 43.327815]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562605.8, "northing": 4797508.6, "time": "06:44:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771701, 43.327555]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562565.0, "northing": 4797479.4, "time": "06:44:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771193, 43.327302]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562524.1, "northing": 4797450.9, "time": "06:44:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770689, 43.327042]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562483.5, "northing": 4797421.7, "time": "06:44:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770181, 43.326785]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562442.6, "northing": 4797392.7, "time": "06:45:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769676, 43.326527]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562401.9, "northing": 4797363.7, "time": "06:45:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769169, 43.326271]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562361.1, "northing": 4797334.9, "time": "06:45:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76866, 43.326017]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562320.1, "northing": 4797306.3, "time": "06:46:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768147, 43.325768]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562278.7, "northing": 4797278.3, "time": "06:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767635, 43.325515]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562237.5, "northing": 4797249.8, "time": "06:46:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76712, 43.325266]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562196.0, "northing": 4797221.8, "time": "06:47:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766612, 43.325015]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562155.0, "northing": 4797193.5, "time": "06:47:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766097, 43.324766]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562113.5, "northing": 4797165.5, "time": "06:47:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765583, 43.324516]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562072.1, "northing": 4797137.3, "time": "06:48:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765067, 43.32427]}, "properties": {"category": "real_shot", "line": "1061", "easting": 562030.5, "northing": 4797109.6, "time": "06:48:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764548, 43.324027]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561988.7, "northing": 4797082.2, "time": "06:48:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764045, 43.323764]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561948.2, "northing": 4797052.7, "time": "06:49:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76355, 43.323496]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561908.3, "northing": 4797022.5, "time": "06:49:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763045, 43.32324]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561867.6, "northing": 4796993.7, "time": "06:49:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762532, 43.322988]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561826.3, "northing": 4796965.4, "time": "06:50:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762039, 43.322717]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561786.6, "northing": 4796934.9, "time": "06:50:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761541, 43.322451]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561746.5, "northing": 4796905.0, "time": "06:50:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761031, 43.322199]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561705.4, "northing": 4796876.6, "time": "06:50:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760525, 43.321942]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561664.6, "northing": 4796847.7, "time": "06:51:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760026, 43.321676]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561624.4, "northing": 4796817.8, "time": "06:51:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75953, 43.321408]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561584.5, "northing": 4796787.7, "time": "06:51:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75903, 43.321145]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561544.2, "northing": 4796758.1, "time": "06:52:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758531, 43.32088]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561504.0, "northing": 4796728.3, "time": "06:52:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758033, 43.320616]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561463.9, "northing": 4796698.6, "time": "06:52:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757531, 43.32035]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561423.5, "northing": 4796668.7, "time": "06:53:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757025, 43.320095]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561382.7, "northing": 4796640.0, "time": "06:53:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756498, 43.319861]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561340.2, "northing": 4796613.7, "time": "06:53:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755982, 43.319614]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561298.6, "northing": 4796585.8, "time": "06:54:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755479, 43.319352]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561258.1, "northing": 4796556.4, "time": "06:54:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754966, 43.319104]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561216.7, "northing": 4796528.5, "time": "06:54:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754443, 43.318865]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561174.6, "northing": 4796501.5, "time": "06:55:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753945, 43.318596]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561134.5, "northing": 4796471.3, "time": "07:04:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753443, 43.318337]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561094.0, "northing": 4796442.2, "time": "07:05:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752911, 43.318109]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561051.1, "northing": 4796416.4, "time": "07:05:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752397, 43.317859]}, "properties": {"category": "real_shot", "line": "1061", "easting": 561009.7, "northing": 4796388.3, "time": "07:05:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751895, 43.317597]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560969.2, "northing": 4796358.9, "time": "07:06:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751374, 43.317357]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560927.2, "northing": 4796331.8, "time": "07:06:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750855, 43.317113]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560885.4, "northing": 4796304.3, "time": "07:06:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750351, 43.316852]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560844.8, "northing": 4796275.0, "time": "07:06:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749839, 43.316602]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560803.5, "northing": 4796246.8, "time": "07:07:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749316, 43.316365]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560761.3, "northing": 4796220.1, "time": "07:07:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748813, 43.316102]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560720.8, "northing": 4796190.6, "time": "07:07:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748304, 43.315848]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560679.8, "northing": 4796162.0, "time": "07:08:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747791, 43.315598]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560638.4, "northing": 4796133.9, "time": "07:08:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747273, 43.315354]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560596.7, "northing": 4796106.4, "time": "07:08:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746754, 43.315112]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560554.8, "northing": 4796079.1, "time": "07:09:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746257, 43.314842]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560514.8, "northing": 4796048.8, "time": "07:09:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745759, 43.314578]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560474.7, "northing": 4796019.1, "time": "07:09:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745254, 43.314319]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560434.0, "northing": 4795990.0, "time": "07:10:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744744, 43.314066]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560392.9, "northing": 4795961.5, "time": "07:10:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744226, 43.313822]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560351.1, "northing": 4795934.0, "time": "07:10:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743725, 43.31356]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560310.7, "northing": 4795904.6, "time": "07:11:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74324, 43.313279]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560271.7, "northing": 4795873.0, "time": "07:11:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742745, 43.31301]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560231.8, "northing": 4795842.8, "time": "07:11:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742226, 43.312768]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560190.0, "northing": 4795815.5, "time": "07:11:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741719, 43.312512]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560149.1, "northing": 4795786.7, "time": "07:12:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74121, 43.312256]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560108.1, "northing": 4795758.0, "time": "07:12:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740702, 43.312003]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560067.1, "northing": 4795729.5, "time": "07:12:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740182, 43.311761]}, "properties": {"category": "real_shot", "line": "1061", "easting": 560025.2, "northing": 4795702.2, "time": "07:13:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739655, 43.311525]}, "properties": {"category": "real_shot", "line": "1061", "easting": 559982.7, "northing": 4795675.7, "time": "07:13:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739153, 43.311265]}, "properties": {"category": "real_shot", "line": "1061", "easting": 559942.2, "northing": 4795646.4, "time": "07:13:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739491, 43.310902]}, "properties": {"category": "real_shot", "line": "1063", "easting": 559970.0, "northing": 4795606.3, "time": "12:39:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740063, 43.311099]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560016.2, "northing": 4795628.6, "time": "12:39:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740519, 43.311402]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560052.9, "northing": 4795662.6, "time": "12:39:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740997, 43.311688]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560091.4, "northing": 4795694.7, "time": "12:40:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74151, 43.311935]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560132.7, "northing": 4795722.5, "time": "12:40:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742006, 43.312202]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560172.7, "northing": 4795752.5, "time": "12:40:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742508, 43.312466]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560213.1, "northing": 4795782.2, "time": "12:41:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74302, 43.312716]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560254.4, "northing": 4795810.3, "time": "12:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743536, 43.312964]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560296.0, "northing": 4795838.3, "time": "12:41:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744062, 43.313199]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560338.4, "northing": 4795864.7, "time": "12:42:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744573, 43.313453]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560379.6, "northing": 4795893.3, "time": "12:42:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745078, 43.313708]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560420.3, "northing": 4795922.0, "time": "12:42:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745587, 43.313963]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560461.3, "northing": 4795950.7, "time": "12:42:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746093, 43.31422]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560502.1, "northing": 4795979.6, "time": "12:43:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746593, 43.314484]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560542.4, "northing": 4796009.3, "time": "12:43:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747091, 43.314749]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560582.5, "northing": 4796039.1, "time": "12:43:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747597, 43.315006]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560623.3, "northing": 4796068.0, "time": "12:44:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748117, 43.315249]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560665.2, "northing": 4796095.3, "time": "12:44:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748612, 43.315517]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560705.1, "northing": 4796125.5, "time": "12:44:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749122, 43.315769]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560746.2, "northing": 4796153.8, "time": "12:45:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749651, 43.316002]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560788.9, "northing": 4796180.1, "time": "12:45:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750176, 43.316241]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560831.2, "northing": 4796207.0, "time": "12:45:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750692, 43.316489]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560872.8, "northing": 4796234.9, "time": "12:46:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751217, 43.316724]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560915.1, "northing": 4796261.4, "time": "12:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751757, 43.316946]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560958.7, "northing": 4796286.5, "time": "12:46:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752266, 43.317199]}, "properties": {"category": "real_shot", "line": "1063", "easting": 560999.7, "northing": 4796314.9, "time": "12:47:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752761, 43.317471]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561039.6, "northing": 4796345.5, "time": "12:47:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753253, 43.317742]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561079.2, "northing": 4796375.9, "time": "12:47:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75375, 43.318009]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561119.2, "northing": 4796405.9, "time": "12:48:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75426, 43.318261]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561160.3, "northing": 4796434.3, "time": "12:48:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754779, 43.318503]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561202.2, "northing": 4796461.6, "time": "12:48:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755289, 43.318757]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561243.3, "northing": 4796490.2, "time": "12:49:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755771, 43.319041]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561282.1, "northing": 4796522.0, "time": "12:49:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756262, 43.319314]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561321.6, "northing": 4796552.7, "time": "12:49:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756767, 43.319572]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561362.3, "northing": 4796581.7, "time": "12:50:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757287, 43.319811]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561404.2, "northing": 4796608.7, "time": "12:50:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757782, 43.320081]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561444.1, "northing": 4796639.0, "time": "12:50:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758268, 43.320362]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561483.2, "northing": 4796670.6, "time": "12:51:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758778, 43.320616]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561524.3, "northing": 4796699.2, "time": "12:51:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759272, 43.320884]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561564.1, "northing": 4796729.3, "time": "12:51:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759767, 43.321154]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561604.0, "northing": 4796759.6, "time": "12:51:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76029, 43.321391]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561646.1, "northing": 4796786.3, "time": "12:52:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760801, 43.321646]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561687.3, "northing": 4796815.0, "time": "12:52:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761312, 43.321897]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561728.5, "northing": 4796843.3, "time": "12:52:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761824, 43.322149]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561769.7, "northing": 4796871.7, "time": "12:53:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762336, 43.322398]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561811.0, "northing": 4796899.7, "time": "12:53:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762847, 43.322652]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561852.2, "northing": 4796928.3, "time": "12:53:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763359, 43.3229]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561893.4, "northing": 4796956.2, "time": "12:54:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763875, 43.32315]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561935.0, "northing": 4796984.3, "time": "12:54:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76439, 43.323396]}, "properties": {"category": "real_shot", "line": "1063", "easting": 561976.5, "northing": 4797012.0, "time": "12:54:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764911, 43.32364]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562018.5, "northing": 4797039.5, "time": "12:55:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765429, 43.32388]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562060.3, "northing": 4797066.6, "time": "12:55:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765953, 43.324122]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562102.5, "northing": 4797093.8, "time": "12:55:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766476, 43.324359]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562144.7, "northing": 4797120.5, "time": "12:56:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766991, 43.324608]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562186.2, "northing": 4797148.6, "time": "12:56:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767464, 43.3249]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562224.2, "northing": 4797181.4, "time": "12:56:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767949, 43.325179]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562263.3, "northing": 4797212.7, "time": "12:57:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768463, 43.325429]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562304.7, "northing": 4797240.9, "time": "12:57:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768953, 43.325703]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562344.1, "northing": 4797271.6, "time": "12:57:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769444, 43.325975]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562383.7, "northing": 4797302.2, "time": "12:58:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769952, 43.326231]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562424.6, "northing": 4797331.0, "time": "12:58:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770476, 43.326468]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562466.8, "northing": 4797357.8, "time": "12:58:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770998, 43.32671]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562508.9, "northing": 4797385.0, "time": "12:59:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771506, 43.326967]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562549.8, "northing": 4797413.9, "time": "12:59:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772015, 43.327221]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562590.8, "northing": 4797442.5, "time": "12:59:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772534, 43.327461]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562632.7, "northing": 4797469.6, "time": "13:00:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773063, 43.327695]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562675.3, "northing": 4797495.9, "time": "13:00:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773571, 43.327951]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562716.2, "northing": 4797524.8, "time": "13:00:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774082, 43.328204]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562757.4, "northing": 4797553.3, "time": "13:00:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774603, 43.328443]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562799.4, "northing": 4797580.2, "time": "13:01:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775121, 43.328691]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562841.1, "northing": 4797608.1, "time": "13:01:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775603, 43.328974]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562879.9, "northing": 4797639.9, "time": "13:01:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776101, 43.329237]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562920.0, "northing": 4797669.5, "time": "13:02:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776612, 43.32949]}, "properties": {"category": "real_shot", "line": "1063", "easting": 562961.2, "northing": 4797698.0, "time": "13:02:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777105, 43.32976]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563000.9, "northing": 4797728.3, "time": "13:02:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777606, 43.330024]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563041.2, "northing": 4797758.0, "time": "13:03:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778117, 43.330275]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563082.4, "northing": 4797786.3, "time": "13:03:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778643, 43.330511]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563124.8, "northing": 4797812.9, "time": "13:03:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779152, 43.330766]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563165.8, "northing": 4797841.6, "time": "13:04:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779662, 43.33102]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563206.9, "northing": 4797870.2, "time": "13:04:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780176, 43.331267]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563248.3, "northing": 4797898.0, "time": "13:04:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7807, 43.331506]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563290.5, "northing": 4797924.9, "time": "13:05:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781225, 43.331742]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563332.8, "northing": 4797951.6, "time": "13:05:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781718, 43.332016]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563372.5, "northing": 4797982.3, "time": "13:05:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7822, 43.332299]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563411.3, "northing": 4798014.2, "time": "13:06:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782683, 43.332581]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563450.2, "northing": 4798045.8, "time": "13:06:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783179, 43.332848]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563490.1, "northing": 4798075.9, "time": "13:06:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783687, 43.333101]}, "properties": {"category": "real_shot", "line": "1063", "easting": 563531.0, "northing": 4798104.4, "time": "13:07:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.739756, 43.310629]}, "properties": {"category": "real_shot", "line": "1065", "easting": 559991.8, "northing": 4795576.2, "time": "07:16:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740237, 43.310908]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560030.5, "northing": 4795607.6, "time": "07:16:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740838, 43.311058]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560079.1, "northing": 4795624.6, "time": "07:16:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741397, 43.311265]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560124.2, "northing": 4795648.0, "time": "07:17:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741884, 43.31154]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560163.4, "northing": 4795678.9, "time": "07:17:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742378, 43.311811]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560203.2, "northing": 4795709.4, "time": "07:17:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742902, 43.312046]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560245.5, "northing": 4795735.9, "time": "07:18:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74341, 43.312303]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560286.4, "northing": 4795764.8, "time": "07:18:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743928, 43.312547]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560328.2, "northing": 4795792.2, "time": "07:18:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744462, 43.312773]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560371.3, "northing": 4795817.7, "time": "07:19:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744968, 43.313031]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560412.1, "northing": 4795846.7, "time": "07:19:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745477, 43.313284]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560453.1, "northing": 4795875.2, "time": "07:19:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745992, 43.313534]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560494.6, "northing": 4795903.3, "time": "07:19:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746502, 43.313785]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560535.7, "northing": 4795931.6, "time": "07:20:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747008, 43.314044]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560576.5, "northing": 4795960.7, "time": "07:20:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747519, 43.314295]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560617.7, "northing": 4795989.0, "time": "07:20:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748027, 43.31455]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560658.6, "northing": 4796017.6, "time": "07:21:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748538, 43.314804]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560699.8, "northing": 4796046.2, "time": "07:21:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749049, 43.315054]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560741.0, "northing": 4796074.4, "time": "07:21:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749563, 43.315302]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560782.4, "northing": 4796102.3, "time": "07:22:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75008, 43.315547]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560824.1, "northing": 4796129.9, "time": "07:22:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750547, 43.315848]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560861.7, "northing": 4796163.6, "time": "07:43:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751067, 43.316089]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560903.6, "northing": 4796190.8, "time": "07:43:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75156, 43.316361]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560943.3, "northing": 4796221.3, "time": "07:43:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752066, 43.316618]}, "properties": {"category": "real_shot", "line": "1065", "easting": 560984.1, "northing": 4796250.3, "time": "07:44:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752576, 43.316872]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561025.2, "northing": 4796278.8, "time": "07:44:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753066, 43.317146]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561064.6, "northing": 4796309.6, "time": "07:44:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753565, 43.31741]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561104.8, "northing": 4796339.3, "time": "07:44:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754077, 43.31766]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561146.1, "northing": 4796367.4, "time": "07:45:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754583, 43.317918]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561186.9, "northing": 4796396.5, "time": "07:45:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755091, 43.318173]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561227.8, "northing": 4796425.2, "time": "07:45:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755598, 43.318429]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561268.7, "northing": 4796453.9, "time": "07:46:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756112, 43.318678]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561310.1, "northing": 4796482.0, "time": "07:46:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756632, 43.318921]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561352.0, "northing": 4796509.3, "time": "07:46:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75712, 43.319197]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561391.3, "northing": 4796540.4, "time": "07:47:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757634, 43.319447]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561432.7, "northing": 4796568.5, "time": "07:47:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758142, 43.319701]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561473.7, "northing": 4796597.1, "time": "07:47:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758649, 43.319958]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561514.5, "northing": 4796626.0, "time": "07:48:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759158, 43.320213]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561555.5, "northing": 4796654.7, "time": "07:48:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75967, 43.320462]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561596.8, "northing": 4796682.7, "time": "07:48:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760191, 43.320703]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561638.8, "northing": 4796709.9, "time": "07:49:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760717, 43.32094]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561681.2, "northing": 4796736.6, "time": "07:49:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761222, 43.321199]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561721.9, "northing": 4796765.7, "time": "07:49:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761733, 43.32145]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561763.1, "northing": 4796794.0, "time": "07:50:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762254, 43.321691]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561805.1, "northing": 4796821.1, "time": "07:50:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762758, 43.32195]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561845.7, "northing": 4796850.3, "time": "07:50:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763268, 43.322205]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561886.8, "northing": 4796878.9, "time": "07:50:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763791, 43.322444]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561928.9, "northing": 4796905.9, "time": "07:51:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764292, 43.322706]}, "properties": {"category": "real_shot", "line": "1065", "easting": 561969.3, "northing": 4796935.4, "time": "07:51:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764793, 43.322971]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562009.6, "northing": 4796965.1, "time": "07:51:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765307, 43.323216]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562051.1, "northing": 4796992.7, "time": "07:52:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765799, 43.323489]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562090.7, "northing": 4797023.4, "time": "07:52:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766294, 43.323761]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562130.5, "northing": 4797054.0, "time": "07:52:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766806, 43.32401]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562171.8, "northing": 4797082.0, "time": "07:53:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767302, 43.324278]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562211.7, "northing": 4797112.2, "time": "07:53:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767801, 43.324542]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562251.9, "northing": 4797141.9, "time": "07:53:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768302, 43.324804]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562292.3, "northing": 4797171.3, "time": "07:54:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768799, 43.325073]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562332.3, "northing": 4797201.6, "time": "07:54:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769301, 43.325334]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562372.7, "northing": 4797230.9, "time": "07:54:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769806, 43.325592]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562413.4, "northing": 4797260.0, "time": "07:55:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770317, 43.325845]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562454.6, "northing": 4797288.4, "time": "07:55:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770833, 43.32609]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562496.2, "northing": 4797316.0, "time": "07:55:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771351, 43.326336]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562537.9, "northing": 4797343.7, "time": "07:56:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771848, 43.326603]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562577.9, "northing": 4797373.8, "time": "07:56:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772363, 43.32685]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562619.4, "northing": 4797401.6, "time": "07:56:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772863, 43.327115]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562659.7, "northing": 4797431.4, "time": "07:56:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773371, 43.327369]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562700.6, "northing": 4797460.0, "time": "07:57:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773892, 43.327611]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562742.6, "northing": 4797487.2, "time": "07:57:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774398, 43.327867]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562783.4, "northing": 4797516.1, "time": "07:57:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774916, 43.328112]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562825.1, "northing": 4797543.6, "time": "07:58:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775433, 43.328357]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562866.8, "northing": 4797571.3, "time": "07:58:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775941, 43.328613]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562907.7, "northing": 4797600.1, "time": "07:58:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776458, 43.328858]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562949.4, "northing": 4797627.7, "time": "07:59:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776984, 43.329094]}, "properties": {"category": "real_shot", "line": "1065", "easting": 562991.8, "northing": 4797654.3, "time": "07:59:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777491, 43.329352]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563032.6, "northing": 4797683.3, "time": "07:59:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778004, 43.329602]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563073.9, "northing": 4797711.5, "time": "08:00:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778534, 43.329831]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563116.7, "northing": 4797737.3, "time": "08:00:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779033, 43.330099]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563156.8, "northing": 4797767.4, "time": "08:00:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779523, 43.330373]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563196.3, "northing": 4797798.2, "time": "08:01:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780013, 43.330647]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563235.7, "northing": 4797829.0, "time": "08:01:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7805, 43.330924]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563274.9, "northing": 4797860.2, "time": "08:01:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78102, 43.331168]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563316.8, "northing": 4797887.6, "time": "08:02:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781526, 43.331424]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563357.6, "northing": 4797916.5, "time": "08:02:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782048, 43.331666]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563399.6, "northing": 4797943.7, "time": "08:02:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782554, 43.331922]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563440.4, "northing": 4797972.6, "time": "08:02:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783063, 43.332177]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563481.4, "northing": 4798001.3, "time": "08:03:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783587, 43.332415]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563523.6, "northing": 4798028.1, "time": "08:03:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784091, 43.332675]}, "properties": {"category": "real_shot", "line": "1065", "easting": 563564.2, "northing": 4798057.3, "time": "08:03:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784049, 43.332708]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563560.8, "northing": 4798061.0, "time": "12:11:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78353, 43.332476]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563518.9, "northing": 4798034.8, "time": "12:12:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783044, 43.332199]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563479.8, "northing": 4798003.7, "time": "12:12:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782608, 43.331869]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563444.8, "northing": 4797966.7, "time": "12:12:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78217, 43.331533]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563409.7, "northing": 4797929.1, "time": "12:12:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781722, 43.331215]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563373.7, "northing": 4797893.4, "time": "12:13:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781264, 43.330908]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563336.9, "northing": 4797859.0, "time": "12:13:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780797, 43.330608]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563299.3, "northing": 4797825.3, "time": "12:13:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780326, 43.330314]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563261.4, "northing": 4797792.3, "time": "12:14:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779846, 43.330027]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563222.8, "northing": 4797760.1, "time": "12:14:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77934, 43.329771]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563182.1, "northing": 4797731.2, "time": "12:14:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778803, 43.329548]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563138.8, "northing": 4797706.1, "time": "12:14:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77826, 43.329331]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563095.0, "northing": 4797681.6, "time": "12:15:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77776, 43.329067]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563054.7, "northing": 4797651.9, "time": "12:15:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777267, 43.328795]}, "properties": {"category": "real_shot", "line": "1067", "easting": 563015.0, "northing": 4797621.3, "time": "12:15:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776775, 43.328523]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562975.4, "northing": 4797590.7, "time": "12:16:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776282, 43.328251]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562935.7, "northing": 4797560.1, "time": "12:16:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775789, 43.32798]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562896.0, "northing": 4797529.6, "time": "12:16:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775266, 43.32774]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562853.9, "northing": 4797502.6, "time": "12:16:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77476, 43.327485]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562813.1, "northing": 4797473.9, "time": "12:17:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774261, 43.327218]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562772.9, "northing": 4797443.9, "time": "12:17:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773748, 43.326969]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562731.6, "northing": 4797415.8, "time": "12:17:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773239, 43.326714]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562690.6, "northing": 4797387.1, "time": "12:17:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772719, 43.326471]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562648.7, "northing": 4797359.8, "time": "12:18:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772196, 43.326234]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562606.5, "northing": 4797333.1, "time": "12:18:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77169, 43.325975]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562565.8, "northing": 4797303.9, "time": "12:18:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771188, 43.325712]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562525.3, "northing": 4797274.3, "time": "12:19:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770675, 43.325465]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562484.0, "northing": 4797246.5, "time": "12:19:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770156, 43.325221]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562442.2, "northing": 4797219.0, "time": "12:19:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769656, 43.324958]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562401.9, "northing": 4797189.4, "time": "12:19:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769157, 43.324692]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562361.7, "northing": 4797159.5, "time": "12:20:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768648, 43.324437]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562320.7, "northing": 4797130.8, "time": "12:20:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768126, 43.324199]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562278.6, "northing": 4797104.0, "time": "12:20:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767617, 43.323944]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562237.6, "northing": 4797075.3, "time": "12:21:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767104, 43.323692]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562196.3, "northing": 4797046.9, "time": "12:21:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766583, 43.323451]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562154.3, "northing": 4797019.8, "time": "12:21:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766083, 43.323189]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562114.0, "northing": 4796990.3, "time": "12:21:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765587, 43.32292]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562074.1, "northing": 4796960.1, "time": "12:22:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765098, 43.322645]}, "properties": {"category": "real_shot", "line": "1067", "easting": 562034.7, "northing": 4796929.2, "time": "12:22:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764614, 43.322364]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561995.7, "northing": 4796897.6, "time": "12:22:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764111, 43.322103]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561955.2, "northing": 4796868.2, "time": "12:23:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763589, 43.321864]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561913.1, "northing": 4796841.3, "time": "12:23:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763075, 43.321615]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561871.7, "northing": 4796813.3, "time": "12:23:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76257, 43.321356]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561831.0, "northing": 4796784.1, "time": "12:23:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762066, 43.321098]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561790.4, "northing": 4796755.1, "time": "12:24:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761558, 43.320841]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561749.5, "northing": 4796726.2, "time": "12:24:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761047, 43.32059]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561708.3, "northing": 4796698.0, "time": "12:24:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760532, 43.320342]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561666.8, "northing": 4796670.0, "time": "12:24:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760015, 43.320096]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561625.1, "northing": 4796642.3, "time": "12:25:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759496, 43.319854]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561583.3, "northing": 4796615.1, "time": "12:25:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759005, 43.319579]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561543.8, "northing": 4796584.2, "time": "12:25:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758489, 43.319332]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561502.2, "northing": 4796556.4, "time": "12:26:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757988, 43.31907]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561461.8, "northing": 4796526.9, "time": "12:26:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757494, 43.3188]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561422.0, "northing": 4796496.6, "time": "12:26:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756986, 43.318544]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561381.1, "northing": 4796467.7, "time": "12:26:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756471, 43.318298]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561339.6, "northing": 4796440.1, "time": "12:27:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755961, 43.318045]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561298.5, "northing": 4796411.6, "time": "12:27:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755456, 43.317785]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561257.8, "northing": 4796382.3, "time": "12:27:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754952, 43.317526]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561217.2, "northing": 4796353.2, "time": "12:28:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754446, 43.317269]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561176.4, "northing": 4796324.3, "time": "12:28:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753939, 43.317013]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561135.6, "northing": 4796295.5, "time": "12:28:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753432, 43.316759]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561094.7, "northing": 4796266.9, "time": "12:28:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752912, 43.316516]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561052.8, "northing": 4796239.5, "time": "12:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752416, 43.316247]}, "properties": {"category": "real_shot", "line": "1067", "easting": 561012.8, "northing": 4796209.3, "time": "12:29:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751919, 43.315977]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560972.8, "northing": 4796179.0, "time": "12:29:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751415, 43.31572]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560932.2, "northing": 4796150.1, "time": "12:30:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750904, 43.315468]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560891.0, "northing": 4796121.7, "time": "12:30:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750379, 43.315231]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560848.7, "northing": 4796095.0, "time": "12:30:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749876, 43.314972]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560808.1, "northing": 4796065.8, "time": "12:30:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749377, 43.314706]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560767.9, "northing": 4796035.9, "time": "12:31:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748869, 43.31445]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560727.0, "northing": 4796007.1, "time": "12:31:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748352, 43.314205]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560685.3, "northing": 4795979.6, "time": "12:31:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747816, 43.313981]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560642.1, "northing": 4795954.3, "time": "12:31:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747297, 43.313736]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560600.2, "northing": 4795926.7, "time": "12:32:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746783, 43.313489]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560558.8, "northing": 4795898.9, "time": "12:32:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746268, 43.313239]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560517.3, "northing": 4795870.8, "time": "12:32:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745757, 43.312989]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560476.1, "northing": 4795842.6, "time": "12:33:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745246, 43.312736]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560434.9, "northing": 4795814.2, "time": "12:33:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744731, 43.312489]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560393.4, "northing": 4795786.4, "time": "12:33:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74421, 43.312247]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560351.4, "northing": 4795759.1, "time": "12:33:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743715, 43.31198]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560311.5, "northing": 4795729.1, "time": "12:34:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743223, 43.311705]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560271.9, "northing": 4795698.2, "time": "12:34:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742729, 43.311435]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560232.1, "northing": 4795667.9, "time": "12:34:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74223, 43.31117]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560191.9, "northing": 4795638.1, "time": "12:35:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741738, 43.310899]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560152.2, "northing": 4795607.6, "time": "12:35:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741229, 43.310645]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560111.2, "northing": 4795579.1, "time": "12:35:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740706, 43.310407]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560069.0, "northing": 4795552.3, "time": "12:35:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740207, 43.310144]}, "properties": {"category": "real_shot", "line": "1067", "easting": 560028.8, "northing": 4795522.7, "time": "12:36:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784671, 43.332049]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563611.9, "northing": 4797988.3, "time": "08:06:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784193, 43.331769]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563573.4, "northing": 4797956.8, "time": "08:06:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783696, 43.331503]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563533.4, "northing": 4797926.9, "time": "08:06:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783215, 43.33122]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563494.7, "northing": 4797895.1, "time": "08:07:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782745, 43.330924]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563456.9, "northing": 4797861.9, "time": "08:07:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782233, 43.330672]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563415.7, "northing": 4797833.5, "time": "08:07:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781705, 43.330441]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563373.1, "northing": 4797807.4, "time": "08:08:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78119, 43.330191]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563331.6, "northing": 4797779.3, "time": "08:08:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780695, 43.329922]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563291.8, "northing": 4797749.0, "time": "08:08:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780201, 43.32965]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563252.0, "northing": 4797718.5, "time": "08:09:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779688, 43.329402]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563210.7, "northing": 4797690.5, "time": "08:09:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77916, 43.329169]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563168.1, "northing": 4797664.2, "time": "08:09:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778655, 43.328909]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563127.4, "northing": 4797635.0, "time": "08:09:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778148, 43.328652]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563086.6, "northing": 4797606.1, "time": "08:10:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777634, 43.328404]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563045.2, "northing": 4797578.1, "time": "08:10:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777117, 43.328159]}, "properties": {"category": "real_shot", "line": "1069", "easting": 563003.5, "northing": 4797550.5, "time": "08:10:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776586, 43.327927]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562960.7, "northing": 4797524.4, "time": "08:11:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776082, 43.327669]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562920.1, "northing": 4797495.3, "time": "08:11:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775572, 43.327416]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562879.0, "northing": 4797466.9, "time": "08:11:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775069, 43.327155]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562838.5, "northing": 4797437.5, "time": "08:12:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774568, 43.326891]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562798.2, "northing": 4797407.8, "time": "08:12:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774063, 43.326633]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562757.5, "northing": 4797378.8, "time": "08:12:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77356, 43.326373]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562717.0, "northing": 4797349.5, "time": "08:13:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773053, 43.326117]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562676.1, "northing": 4797320.7, "time": "08:13:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772545, 43.325861]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562635.2, "northing": 4797291.9, "time": "08:13:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772036, 43.325607]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562594.2, "northing": 4797263.3, "time": "08:14:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771527, 43.325353]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562553.2, "northing": 4797234.7, "time": "08:14:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771019, 43.325098]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562512.3, "northing": 4797206.0, "time": "08:14:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770513, 43.32484]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562471.5, "northing": 4797177.0, "time": "08:14:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770007, 43.324583]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562430.7, "northing": 4797148.1, "time": "08:15:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769499, 43.324327]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562389.8, "northing": 4797119.3, "time": "08:15:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76899, 43.324073]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562348.8, "northing": 4797090.7, "time": "08:15:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768479, 43.323822]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562307.6, "northing": 4797062.4, "time": "08:16:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767967, 43.32357]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562266.4, "northing": 4797034.0, "time": "08:16:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767458, 43.323316]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562225.4, "northing": 4797005.5, "time": "08:16:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766947, 43.323064]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562184.2, "northing": 4796977.1, "time": "08:17:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766442, 43.322806]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562143.5, "northing": 4796948.0, "time": "08:17:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765939, 43.322546]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562103.0, "northing": 4796918.8, "time": "08:17:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765432, 43.322291]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562062.1, "northing": 4796890.1, "time": "08:18:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764918, 43.322041]}, "properties": {"category": "real_shot", "line": "1069", "easting": 562020.7, "northing": 4796862.0, "time": "08:18:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764431, 43.321763]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561981.5, "northing": 4796830.7, "time": "08:18:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763943, 43.321486]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561942.2, "northing": 4796799.6, "time": "08:18:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763434, 43.321233]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561901.2, "northing": 4796771.1, "time": "08:19:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76293, 43.320974]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561860.6, "northing": 4796742.0, "time": "08:19:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76243, 43.320709]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561820.3, "northing": 4796712.2, "time": "08:19:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761913, 43.320464]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561778.7, "northing": 4796684.6, "time": "08:20:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761416, 43.320197]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561738.6, "northing": 4796654.6, "time": "08:20:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76092, 43.319928]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561698.7, "northing": 4796624.3, "time": "08:20:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760404, 43.319683]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561657.1, "northing": 4796596.7, "time": "08:21:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759885, 43.319438]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561615.3, "northing": 4796569.2, "time": "08:21:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759382, 43.31918]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561574.7, "northing": 4796540.1, "time": "08:21:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758864, 43.318934]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561533.0, "northing": 4796512.4, "time": "08:22:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758347, 43.318689]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561491.3, "northing": 4796484.8, "time": "08:22:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757845, 43.318427]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561450.9, "northing": 4796455.4, "time": "08:22:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757339, 43.318169]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561410.1, "northing": 4796426.4, "time": "08:23:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756831, 43.317914]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561369.2, "northing": 4796397.7, "time": "08:23:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756324, 43.317658]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561328.3, "northing": 4796368.9, "time": "08:23:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755814, 43.317406]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561287.2, "northing": 4796340.5, "time": "08:23:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7553, 43.317155]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561245.8, "northing": 4796312.3, "time": "08:24:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754787, 43.316906]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561204.4, "northing": 4796284.2, "time": "08:24:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754272, 43.316659]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561162.9, "northing": 4796256.4, "time": "08:24:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753764, 43.316404]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561122.0, "northing": 4796227.7, "time": "08:25:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753258, 43.316146]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561081.2, "northing": 4796198.7, "time": "08:25:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75275, 43.315891]}, "properties": {"category": "real_shot", "line": "1069", "easting": 561040.3, "northing": 4796170.0, "time": "08:25:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752242, 43.315637]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560999.3, "northing": 4796141.4, "time": "08:26:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751729, 43.315385]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560958.0, "northing": 4796113.1, "time": "08:26:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751217, 43.315137]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560916.7, "northing": 4796085.1, "time": "08:26:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7507, 43.31489]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560875.0, "northing": 4796057.3, "time": "08:27:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750185, 43.314641]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560833.5, "northing": 4796029.3, "time": "08:27:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749669, 43.314396]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560791.9, "northing": 4796001.7, "time": "08:27:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749151, 43.31415]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560750.2, "northing": 4795974.0, "time": "08:27:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748633, 43.313907]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560708.4, "northing": 4795946.7, "time": "08:28:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748121, 43.313667]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560667.1, "northing": 4795919.6, "time": "08:28:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747624, 43.313396]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560627.1, "northing": 4795889.2, "time": "08:28:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747133, 43.313126]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560587.5, "northing": 4795858.8, "time": "08:29:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746629, 43.31286]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560546.9, "northing": 4795828.9, "time": "08:29:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74613, 43.312592]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560506.7, "northing": 4795798.8, "time": "08:30:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745631, 43.312327]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560466.5, "northing": 4795769.0, "time": "08:30:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745112, 43.312084]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560424.7, "northing": 4795741.7, "time": "08:31:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744599, 43.311833]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560383.3, "northing": 4795713.4, "time": "08:31:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744073, 43.311598]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560340.9, "northing": 4795686.9, "time": "08:31:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743562, 43.311345]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560299.7, "northing": 4795658.5, "time": "08:32:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743054, 43.311089]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560258.8, "northing": 4795629.7, "time": "08:32:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742547, 43.310834]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560217.9, "northing": 4795601.0, "time": "08:33:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742044, 43.310573]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560177.4, "northing": 4795571.7, "time": "08:33:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741553, 43.3103]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560137.8, "northing": 4795541.0, "time": "08:34:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741055, 43.310034]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560097.7, "northing": 4795511.1, "time": "08:34:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74055, 43.309776]}, "properties": {"category": "real_shot", "line": "1069", "easting": 560057.0, "northing": 4795482.1, "time": "08:34:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.740909, 43.309399]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560086.5, "northing": 4795440.5, "time": "11:41:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741374, 43.309696]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560123.9, "northing": 4795473.8, "time": "11:41:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741855, 43.309976]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560162.6, "northing": 4795505.2, "time": "11:41:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742384, 43.310216]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560205.3, "northing": 4795532.3, "time": "11:42:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742903, 43.310462]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560247.1, "northing": 4795559.9, "time": "11:42:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743426, 43.310694]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560289.3, "northing": 4795586.1, "time": "11:42:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743926, 43.310958]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560329.6, "northing": 4795615.8, "time": "11:43:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744411, 43.311239]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560368.7, "northing": 4795647.3, "time": "11:43:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744899, 43.311512]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560408.0, "northing": 4795678.0, "time": "11:43:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745443, 43.311733]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560451.9, "northing": 4795702.9, "time": "11:44:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745967, 43.311972]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560494.1, "northing": 4795729.8, "time": "11:44:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74646, 43.312243]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560533.8, "northing": 4795760.3, "time": "11:44:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746923, 43.312543]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560571.1, "northing": 4795794.0, "time": "11:45:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747432, 43.312799]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560612.1, "northing": 4795822.8, "time": "11:45:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747965, 43.313024]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560655.1, "northing": 4795848.1, "time": "11:45:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748502, 43.313253]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560698.4, "northing": 4795874.0, "time": "11:46:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749024, 43.31349]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560740.5, "northing": 4795900.7, "time": "11:46:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749517, 43.313761]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560780.2, "northing": 4795931.1, "time": "11:46:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749995, 43.314052]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560818.7, "northing": 4795963.8, "time": "11:46:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750493, 43.314316]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560858.8, "northing": 4795993.5, "time": "11:47:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751017, 43.31455]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560901.1, "northing": 4796019.8, "time": "11:47:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751527, 43.314804]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560942.2, "northing": 4796048.4, "time": "11:47:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752041, 43.315059]}, "properties": {"category": "real_shot", "line": "1071", "easting": 560983.6, "northing": 4796077.1, "time": "11:48:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752553, 43.315308]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561024.9, "northing": 4796105.1, "time": "11:48:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753077, 43.315545]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561067.1, "northing": 4796131.8, "time": "11:48:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753615, 43.315768]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561110.5, "northing": 4796157.0, "time": "11:49:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754115, 43.316031]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561150.8, "northing": 4796186.6, "time": "11:49:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754616, 43.316292]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561191.2, "northing": 4796215.9, "time": "11:49:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755125, 43.316547]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561232.2, "northing": 4796244.6, "time": "11:50:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75565, 43.316788]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561274.5, "northing": 4796271.8, "time": "11:50:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756171, 43.317026]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561316.5, "northing": 4796298.6, "time": "11:50:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756665, 43.317298]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561356.3, "northing": 4796329.1, "time": "11:51:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75716, 43.317567]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561396.2, "northing": 4796359.4, "time": "11:51:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757654, 43.317833]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561436.0, "northing": 4796389.3, "time": "11:51:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758175, 43.318071]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561478.0, "northing": 4796416.1, "time": "11:52:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758676, 43.318339]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561518.3, "northing": 4796446.2, "time": "11:52:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759175, 43.318606]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561558.5, "northing": 4796476.2, "time": "11:52:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759669, 43.318869]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561598.3, "northing": 4796505.8, "time": "11:53:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76018, 43.319128]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561639.5, "northing": 4796535.0, "time": "11:53:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760696, 43.319373]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561681.1, "northing": 4796562.5, "time": "11:53:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761187, 43.319649]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561720.6, "northing": 4796593.6, "time": "11:54:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761681, 43.319918]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561760.4, "northing": 4796623.8, "time": "11:54:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762184, 43.320179]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561800.9, "northing": 4796653.2, "time": "11:54:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762688, 43.320435]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561841.5, "northing": 4796682.0, "time": "11:55:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763206, 43.320679]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561883.3, "northing": 4796709.4, "time": "11:55:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763736, 43.32091]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561926.0, "northing": 4796735.5, "time": "11:55:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764237, 43.321178]}, "properties": {"category": "real_shot", "line": "1071", "easting": 561966.4, "northing": 4796765.6, "time": "11:56:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764735, 43.321442]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562006.5, "northing": 4796795.3, "time": "11:56:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765256, 43.321682]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562048.5, "northing": 4796822.3, "time": "11:56:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765789, 43.321911]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562091.5, "northing": 4796848.2, "time": "11:57:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766285, 43.322183]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562131.4, "northing": 4796878.7, "time": "11:57:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766768, 43.32246]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562170.3, "northing": 4796909.9, "time": "11:57:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767267, 43.322726]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562210.5, "northing": 4796939.8, "time": "11:58:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767808, 43.322945]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562254.1, "northing": 4796964.5, "time": "11:58:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768324, 43.323192]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562295.7, "northing": 4796992.3, "time": "11:58:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768841, 43.323438]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562337.4, "northing": 4797020.0, "time": "11:58:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769354, 43.323686]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562378.7, "northing": 4797048.0, "time": "11:59:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769871, 43.323934]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562420.4, "northing": 4797075.9, "time": "11:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770385, 43.324183]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562461.8, "northing": 4797103.9, "time": "11:59:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770865, 43.324467]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562500.4, "northing": 4797135.8, "time": "12:00:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771366, 43.324729]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562540.8, "northing": 4797165.3, "time": "12:00:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771912, 43.324944]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562584.8, "northing": 4797189.6, "time": "12:00:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772404, 43.32522]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562624.4, "northing": 4797220.6, "time": "12:01:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772886, 43.325502]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562663.2, "northing": 4797252.3, "time": "12:01:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773408, 43.325737]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562705.3, "northing": 4797278.8, "time": "12:01:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773944, 43.325966]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562748.5, "northing": 4797304.6, "time": "12:02:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774438, 43.326238]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562788.3, "northing": 4797335.2, "time": "12:02:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774926, 43.326513]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562827.6, "northing": 4797366.1, "time": "12:02:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775435, 43.326765]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562868.6, "northing": 4797394.5, "time": "12:03:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775951, 43.327013]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562910.2, "northing": 4797422.4, "time": "12:03:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776453, 43.327275]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562950.6, "northing": 4797451.9, "time": "12:03:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776972, 43.32752]}, "properties": {"category": "real_shot", "line": "1071", "easting": 562992.4, "northing": 4797479.5, "time": "12:04:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777473, 43.327782]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563032.8, "northing": 4797508.9, "time": "12:04:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777991, 43.328024]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563074.5, "northing": 4797536.2, "time": "12:04:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778511, 43.32827]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563116.4, "northing": 4797563.9, "time": "12:05:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779015, 43.328528]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563157.0, "northing": 4797593.0, "time": "12:05:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779526, 43.32878]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563198.2, "northing": 4797621.3, "time": "12:05:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780045, 43.329023]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563240.0, "northing": 4797648.7, "time": "12:06:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780572, 43.329258]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563282.5, "northing": 4797675.2, "time": "12:06:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781106, 43.329487]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563325.5, "northing": 4797701.0, "time": "12:06:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78161, 43.329747]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563366.1, "northing": 4797730.3, "time": "12:07:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782103, 43.330018]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563405.8, "northing": 4797760.8, "time": "12:07:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782602, 43.330281]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563446.0, "northing": 4797790.3, "time": "12:07:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783101, 43.330546]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563486.2, "northing": 4797820.1, "time": "12:08:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783603, 43.33081]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563526.6, "northing": 4797849.8, "time": "12:08:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784096, 43.331078]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563566.3, "northing": 4797880.0, "time": "12:08:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784593, 43.33135]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563606.3, "northing": 4797910.6, "time": "12:09:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785085, 43.331619]}, "properties": {"category": "real_shot", "line": "1071", "easting": 563645.9, "northing": 4797940.8, "time": "12:09:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741252, 43.30903]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560114.7, "northing": 4795399.7, "time": "08:41:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741777, 43.309269]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560157.0, "northing": 4795426.6, "time": "08:42:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742293, 43.309515]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560198.6, "northing": 4795454.3, "time": "08:42:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742788, 43.309784]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560238.5, "northing": 4795484.6, "time": "08:42:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743288, 43.310047]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560278.8, "northing": 4795514.1, "time": "08:43:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743813, 43.310283]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560321.1, "northing": 4795540.7, "time": "08:43:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744317, 43.310543]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560361.7, "northing": 4795570.0, "time": "08:43:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744814, 43.310809]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560401.8, "northing": 4795599.9, "time": "08:44:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745334, 43.311053]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560443.7, "northing": 4795627.3, "time": "08:44:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745857, 43.311292]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560485.9, "northing": 4795654.2, "time": "08:44:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746364, 43.311548]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560526.7, "northing": 4795683.0, "time": "08:44:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746862, 43.311814]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560566.9, "northing": 4795712.9, "time": "08:45:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747368, 43.312072]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560607.6, "northing": 4795742.0, "time": "08:45:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747891, 43.312309]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560649.8, "northing": 4795768.7, "time": "08:45:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748401, 43.312563]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560690.9, "northing": 4795797.3, "time": "08:46:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7489, 43.312829]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560731.1, "northing": 4795827.1, "time": "08:46:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749402, 43.313088]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560771.6, "northing": 4795856.3, "time": "08:46:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749913, 43.313341]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560812.8, "northing": 4795884.8, "time": "08:47:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750434, 43.313581]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560854.8, "northing": 4795911.8, "time": "08:47:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750942, 43.313838]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560895.7, "northing": 4795940.7, "time": "08:47:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751427, 43.314117]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560934.8, "northing": 4795972.0, "time": "08:47:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75193, 43.314377]}, "properties": {"category": "real_shot", "line": "1073", "easting": 560975.3, "northing": 4796001.3, "time": "08:48:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752447, 43.314622]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561017.0, "northing": 4796028.9, "time": "08:48:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752942, 43.314893]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561056.8, "northing": 4796059.3, "time": "08:48:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753441, 43.315157]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561097.0, "northing": 4796089.0, "time": "08:49:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753959, 43.3154]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561138.8, "northing": 4796116.4, "time": "08:49:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754451, 43.315674]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561178.4, "northing": 4796147.1, "time": "08:49:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75495, 43.315939]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561218.6, "northing": 4796176.9, "time": "08:50:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755463, 43.316187]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561260.0, "northing": 4796204.9, "time": "08:50:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755962, 43.316453]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561300.2, "northing": 4796234.8, "time": "08:50:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756459, 43.31672]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561340.2, "northing": 4796264.8, "time": "08:50:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756967, 43.316975]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561381.1, "northing": 4796293.5, "time": "08:51:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757481, 43.317224]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561422.6, "northing": 4796321.5, "time": "08:51:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757999, 43.317468]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561464.3, "northing": 4796349.0, "time": "08:51:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758526, 43.317704]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561506.8, "northing": 4796375.6, "time": "08:52:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759054, 43.317937]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561549.4, "northing": 4796401.9, "time": "08:52:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759563, 43.318192]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561590.4, "northing": 4796430.5, "time": "08:52:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760072, 43.318446]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561631.4, "northing": 4796459.1, "time": "08:53:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76059, 43.31869]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561673.2, "northing": 4796486.6, "time": "08:53:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761122, 43.318919]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561716.1, "northing": 4796512.4, "time": "08:53:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761627, 43.319177]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561756.8, "northing": 4796541.5, "time": "08:53:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762132, 43.319437]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561797.5, "northing": 4796570.7, "time": "08:54:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762652, 43.319677]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561839.4, "northing": 4796597.8, "time": "08:54:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763163, 43.319931]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561880.6, "northing": 4796626.3, "time": "08:54:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763657, 43.320202]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561920.3, "northing": 4796656.8, "time": "08:55:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764156, 43.320467]}, "properties": {"category": "real_shot", "line": "1073", "easting": 561960.5, "northing": 4796686.6, "time": "08:55:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764663, 43.320722]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562001.4, "northing": 4796715.3, "time": "08:55:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765183, 43.320964]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562043.3, "northing": 4796742.5, "time": "08:56:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765677, 43.321234]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562083.1, "northing": 4796772.9, "time": "08:56:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766168, 43.321509]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562122.6, "northing": 4796803.8, "time": "08:56:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766683, 43.321754]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562164.1, "northing": 4796831.4, "time": "08:57:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767184, 43.322018]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562204.5, "northing": 4796861.1, "time": "08:57:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767675, 43.322292]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562244.0, "northing": 4796891.9, "time": "08:57:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768178, 43.322553]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562284.5, "northing": 4796921.2, "time": "08:57:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768695, 43.322798]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562326.2, "northing": 4796948.8, "time": "08:58:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769185, 43.323073]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562365.6, "northing": 4796979.7, "time": "08:58:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76969, 43.323331]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562406.3, "northing": 4797008.8, "time": "08:58:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770202, 43.32358]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562447.6, "northing": 4797036.8, "time": "08:59:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770704, 43.323844]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562488.0, "northing": 4797066.5, "time": "08:59:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771214, 43.324095]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562529.1, "northing": 4797094.8, "time": "08:59:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771735, 43.324337]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562571.1, "northing": 4797122.0, "time": "09:00:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772234, 43.324603]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562611.3, "northing": 4797151.9, "time": "09:00:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772742, 43.324858]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562652.2, "northing": 4797180.6, "time": "09:00:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773265, 43.325096]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562694.4, "northing": 4797207.5, "time": "09:00:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773766, 43.325359]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562734.7, "northing": 4797237.1, "time": "09:01:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774275, 43.325614]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562775.7, "northing": 4797265.8, "time": "09:01:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774795, 43.325857]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562817.6, "northing": 4797293.1, "time": "09:01:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775312, 43.326102]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562859.3, "northing": 4797320.7, "time": "09:02:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775814, 43.326364]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562899.7, "northing": 4797350.2, "time": "09:02:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776314, 43.326628]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562940.0, "northing": 4797379.9, "time": "09:02:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776827, 43.326877]}, "properties": {"category": "real_shot", "line": "1073", "easting": 562981.3, "northing": 4797407.9, "time": "09:03:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777342, 43.327125]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563022.8, "northing": 4797435.9, "time": "09:03:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777863, 43.327366]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563064.8, "northing": 4797463.0, "time": "09:03:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778374, 43.327618]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563106.0, "northing": 4797491.4, "time": "09:03:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778873, 43.327883]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563146.2, "northing": 4797521.2, "time": "09:04:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77938, 43.32814]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563187.0, "northing": 4797550.1, "time": "09:04:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77989, 43.328393]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563228.1, "northing": 4797578.6, "time": "09:04:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780405, 43.32864]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563269.6, "northing": 4797606.4, "time": "09:05:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780926, 43.328883]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563311.6, "northing": 4797633.8, "time": "09:05:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781422, 43.32915]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563351.5, "northing": 4797663.9, "time": "09:05:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781932, 43.329403]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563392.6, "northing": 4797692.3, "time": "09:06:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782448, 43.32965]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563434.2, "northing": 4797720.1, "time": "09:06:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782943, 43.329919]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563474.0, "northing": 4797750.4, "time": "09:06:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783454, 43.33017]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563515.2, "northing": 4797778.7, "time": "09:06:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783972, 43.330415]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563556.9, "northing": 4797806.3, "time": "09:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78447, 43.330682]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563597.0, "northing": 4797836.3, "time": "09:07:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784975, 43.330941]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563637.7, "northing": 4797865.4, "time": "09:07:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785499, 43.331178]}, "properties": {"category": "real_shot", "line": "1073", "easting": 563679.9, "northing": 4797892.2, "time": "09:08:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785586, 43.331078]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563687.1, "northing": 4797881.1, "time": "11:13:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785094, 43.330811]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563647.5, "northing": 4797851.1, "time": "11:13:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784591, 43.330551]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563607.0, "northing": 4797821.8, "time": "11:13:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784201, 43.330181]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563575.7, "northing": 4797780.5, "time": "11:14:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783851, 43.329743]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563547.8, "northing": 4797731.5, "time": "11:14:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783389, 43.329433]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563510.7, "northing": 4797696.8, "time": "11:14:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782865, 43.329206]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563468.4, "northing": 4797671.2, "time": "11:15:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782294, 43.329018]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563422.3, "northing": 4797649.8, "time": "11:15:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781743, 43.328806]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563377.9, "northing": 4797625.9, "time": "11:15:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781228, 43.328559]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563336.4, "northing": 4797598.1, "time": "11:15:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780723, 43.328303]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563295.7, "northing": 4797569.2, "time": "11:16:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780242, 43.328019]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563257.0, "northing": 4797537.3, "time": "11:16:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779751, 43.327744]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563217.5, "northing": 4797506.4, "time": "11:16:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77924, 43.327491]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563176.3, "northing": 4797478.0, "time": "11:17:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778711, 43.32726]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563133.7, "northing": 4797451.9, "time": "11:17:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778195, 43.327013]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563092.1, "northing": 4797424.1, "time": "11:17:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777679, 43.326767]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563050.5, "northing": 4797396.4, "time": "11:17:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777171, 43.326511]}, "properties": {"category": "real_shot", "line": "1075", "easting": 563009.6, "northing": 4797367.5, "time": "11:18:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776669, 43.326246]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562969.2, "northing": 4797337.8, "time": "11:18:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776151, 43.326004]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562927.4, "northing": 4797310.5, "time": "11:18:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775633, 43.32576]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562885.7, "northing": 4797283.0, "time": "11:19:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775132, 43.325495]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562845.3, "northing": 4797253.2, "time": "11:19:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774625, 43.32524]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562804.5, "northing": 4797224.5, "time": "11:19:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774103, 43.325]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562762.4, "northing": 4797197.4, "time": "11:19:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773605, 43.324735]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562722.3, "northing": 4797167.6, "time": "11:20:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773098, 43.324477]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562681.5, "northing": 4797138.6, "time": "11:20:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772586, 43.324227]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562640.2, "northing": 4797110.4, "time": "11:20:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772064, 43.323989]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562598.1, "northing": 4797083.6, "time": "11:20:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771558, 43.32373]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562557.4, "northing": 4797054.5, "time": "11:21:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771058, 43.323465]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562517.1, "northing": 4797024.7, "time": "11:21:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77056, 43.323199]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562477.0, "northing": 4796994.8, "time": "11:21:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770063, 43.322933]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562437.0, "northing": 4796964.9, "time": "11:22:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769564, 43.322668]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562396.8, "northing": 4796935.1, "time": "11:22:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769061, 43.322406]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562356.3, "northing": 4796905.6, "time": "11:22:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768563, 43.322139]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562316.2, "northing": 4796875.6, "time": "11:22:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768061, 43.321879]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562275.7, "northing": 4796846.3, "time": "11:23:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767546, 43.321633]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562234.2, "northing": 4796818.6, "time": "11:23:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76702, 43.321398]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562191.8, "northing": 4796792.1, "time": "11:23:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766513, 43.321139]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562151.0, "northing": 4796763.0, "time": "11:24:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766005, 43.320885]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562110.0, "northing": 4796734.4, "time": "11:24:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76549, 43.320636]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562068.5, "northing": 4796706.4, "time": "11:24:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764972, 43.320392]}, "properties": {"category": "real_shot", "line": "1075", "easting": 562026.8, "northing": 4796678.9, "time": "11:24:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76445, 43.320152]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561984.7, "northing": 4796651.8, "time": "11:25:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763935, 43.319906]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561943.2, "northing": 4796624.1, "time": "11:25:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763436, 43.31964]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561903.0, "northing": 4796594.2, "time": "11:25:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762948, 43.319362]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561863.7, "northing": 4796563.0, "time": "11:26:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762449, 43.319096]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561823.5, "northing": 4796533.1, "time": "11:26:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761934, 43.31885]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561782.0, "northing": 4796505.4, "time": "11:26:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761432, 43.31859]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561741.6, "northing": 4796476.1, "time": "11:26:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760922, 43.318336]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561700.5, "northing": 4796447.5, "time": "11:27:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760408, 43.318089]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561659.0, "northing": 4796419.7, "time": "11:27:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759893, 43.31784]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561617.5, "northing": 4796391.7, "time": "11:27:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759375, 43.317595]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561575.8, "northing": 4796364.1, "time": "11:28:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75885, 43.317358]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561533.4, "northing": 4796337.4, "time": "11:28:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758352, 43.317092]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561493.3, "northing": 4796307.5, "time": "11:28:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757847, 43.316834]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561452.6, "northing": 4796278.5, "time": "11:28:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757332, 43.316586]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561411.1, "northing": 4796250.5, "time": "11:29:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756806, 43.31635]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561368.7, "northing": 4796224.0, "time": "11:29:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756306, 43.316087]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561328.4, "northing": 4796194.4, "time": "11:29:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755821, 43.315808]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561289.4, "northing": 4796163.0, "time": "11:30:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755338, 43.315524]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561250.5, "northing": 4796131.2, "time": "11:30:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754832, 43.315266]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561209.7, "northing": 4796102.1, "time": "11:30:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754321, 43.315018]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561168.5, "northing": 4796074.2, "time": "11:30:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753815, 43.314758]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561127.8, "northing": 4796045.0, "time": "11:31:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753312, 43.314498]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561087.2, "northing": 4796015.7, "time": "11:31:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752814, 43.314234]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561047.1, "northing": 4795986.0, "time": "11:31:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752294, 43.313989]}, "properties": {"category": "real_shot", "line": "1075", "easting": 561005.2, "northing": 4795958.5, "time": "11:32:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751788, 43.313734]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560964.4, "northing": 4795929.8, "time": "11:32:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751283, 43.313476]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560923.7, "northing": 4795900.7, "time": "11:32:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750782, 43.313209]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560883.4, "northing": 4795870.7, "time": "11:32:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75026, 43.312971]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560841.3, "northing": 4795843.9, "time": "11:33:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749744, 43.312725]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560799.7, "northing": 4795816.2, "time": "11:33:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749227, 43.312479]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560758.0, "northing": 4795788.5, "time": "11:33:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748704, 43.31224]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560715.8, "northing": 4795761.6, "time": "11:33:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748174, 43.312008]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560673.1, "northing": 4795735.5, "time": "11:34:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747674, 43.311744]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560632.8, "northing": 4795705.8, "time": "11:34:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747184, 43.311468]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560593.3, "northing": 4795674.8, "time": "11:34:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746687, 43.311204]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560553.3, "northing": 4795645.1, "time": "11:35:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746171, 43.310957]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560511.7, "northing": 4795617.3, "time": "11:35:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74564, 43.310727]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560468.8, "northing": 4795591.4, "time": "11:35:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745152, 43.310451]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560429.5, "northing": 4795560.3, "time": "11:36:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744642, 43.310197]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560388.4, "northing": 4795531.8, "time": "11:36:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744132, 43.309944]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560347.3, "northing": 4795503.3, "time": "11:36:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743641, 43.30967]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560307.8, "northing": 4795472.5, "time": "11:36:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743133, 43.309415]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560266.8, "northing": 4795443.8, "time": "11:37:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742619, 43.309167]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560225.4, "northing": 4795415.9, "time": "11:37:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742118, 43.308905]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560185.0, "northing": 4795386.5, "time": "11:37:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74162, 43.308638]}, "properties": {"category": "real_shot", "line": "1075", "easting": 560144.9, "northing": 4795356.4, "time": "11:38:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786018, 43.330616]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563722.6, "northing": 4797830.2, "time": "09:10:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785519, 43.330359]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563682.4, "northing": 4797801.2, "time": "09:10:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785022, 43.330092]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563642.4, "northing": 4797771.2, "time": "09:11:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784518, 43.329834]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563601.8, "northing": 4797742.2, "time": "09:11:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784026, 43.329563]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563562.2, "northing": 4797711.7, "time": "09:11:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783579, 43.329242]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563526.3, "northing": 4797675.7, "time": "09:11:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783131, 43.328919]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563490.3, "northing": 4797639.5, "time": "09:12:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782599, 43.328692]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563447.4, "northing": 4797613.9, "time": "09:12:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782058, 43.328473]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563403.8, "northing": 4797589.1, "time": "09:12:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781552, 43.328216]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563363.0, "northing": 4797560.2, "time": "09:13:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781068, 43.327932]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563324.1, "northing": 4797528.3, "time": "09:13:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780574, 43.327662]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563284.3, "northing": 4797498.0, "time": "09:13:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780066, 43.327409]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563243.4, "northing": 4797469.5, "time": "09:13:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779567, 43.327145]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563203.2, "northing": 4797439.8, "time": "09:14:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779062, 43.326885]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563162.5, "northing": 4797410.5, "time": "09:14:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778552, 43.326633]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563121.4, "northing": 4797382.1, "time": "09:14:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778039, 43.326382]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563080.1, "northing": 4797353.9, "time": "09:15:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777524, 43.326135]}, "properties": {"category": "real_shot", "line": "1077", "easting": 563038.6, "northing": 4797326.1, "time": "09:15:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777002, 43.325895]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562996.5, "northing": 4797299.0, "time": "09:15:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776476, 43.325659]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562954.1, "northing": 4797272.4, "time": "09:16:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77597, 43.325402]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562913.4, "northing": 4797243.5, "time": "09:16:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775479, 43.325127]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562873.8, "northing": 4797212.6, "time": "09:16:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774984, 43.324858]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562834.0, "northing": 4797182.3, "time": "09:16:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774491, 43.324586]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562794.3, "northing": 4797151.8, "time": "09:17:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773989, 43.324324]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562753.9, "northing": 4797122.3, "time": "09:17:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773476, 43.324076]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562712.5, "northing": 4797094.4, "time": "09:17:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772975, 43.323812]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562672.2, "northing": 4797064.7, "time": "09:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772462, 43.323564]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562630.8, "northing": 4797036.7, "time": "09:18:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771934, 43.32333]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562588.3, "northing": 4797010.4, "time": "09:18:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771422, 43.323078]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562547.0, "northing": 4796982.0, "time": "09:18:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770903, 43.322834]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562505.2, "northing": 4796954.5, "time": "09:19:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770374, 43.322602]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562462.5, "northing": 4796928.3, "time": "09:19:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76984, 43.322373]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562419.5, "northing": 4796902.5, "time": "09:19:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769332, 43.322119]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562378.5, "northing": 4796873.9, "time": "09:20:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768813, 43.321876]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562336.7, "northing": 4796846.5, "time": "09:20:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768307, 43.321618]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562295.9, "northing": 4796817.5, "time": "09:20:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767807, 43.321354]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562255.7, "northing": 4796787.8, "time": "09:20:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7673, 43.3211]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562214.8, "northing": 4796759.2, "time": "09:21:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766815, 43.320818]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562175.8, "northing": 4796727.5, "time": "09:21:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766311, 43.320557]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562135.2, "northing": 4796698.2, "time": "09:21:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765805, 43.320304]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562094.4, "northing": 4796669.7, "time": "09:22:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765313, 43.320029]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562054.8, "northing": 4796638.8, "time": "09:22:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764803, 43.319777]}, "properties": {"category": "real_shot", "line": "1077", "easting": 562013.7, "northing": 4796610.4, "time": "09:22:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764291, 43.319527]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561972.4, "northing": 4796582.3, "time": "09:23:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763793, 43.31926]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561932.3, "northing": 4796552.3, "time": "09:23:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763278, 43.319013]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561890.8, "northing": 4796524.5, "time": "09:23:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762765, 43.318762]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561849.5, "northing": 4796496.2, "time": "09:23:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762261, 43.318501]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561808.9, "northing": 4796466.9, "time": "09:24:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761746, 43.318254]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561767.4, "northing": 4796439.1, "time": "09:24:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761227, 43.318013]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561725.5, "northing": 4796411.9, "time": "09:24:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76073, 43.317745]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561685.5, "northing": 4796381.8, "time": "09:25:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760221, 43.317489]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561644.5, "northing": 4796353.0, "time": "09:25:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759699, 43.317251]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561602.4, "northing": 4796326.2, "time": "09:25:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759189, 43.316997]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561561.3, "northing": 4796297.6, "time": "09:25:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7587, 43.316721]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561521.9, "northing": 4796266.6, "time": "09:26:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758208, 43.316448]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561482.3, "northing": 4796235.9, "time": "09:26:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757704, 43.31619]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561441.7, "northing": 4796206.9, "time": "09:26:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757195, 43.315937]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561400.7, "northing": 4796178.4, "time": "09:27:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756705, 43.315661]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561361.2, "northing": 4796147.4, "time": "09:27:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75619, 43.315414]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561319.7, "northing": 4796119.6, "time": "09:27:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755684, 43.315158]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561278.9, "northing": 4796090.7, "time": "09:28:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755177, 43.3149]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561238.1, "northing": 4796061.7, "time": "09:28:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75467, 43.314646]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561197.2, "northing": 4796033.1, "time": "09:28:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754157, 43.314393]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561155.9, "northing": 4796004.7, "time": "09:28:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753643, 43.314146]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561114.4, "northing": 4795976.9, "time": "09:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753127, 43.313899]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561072.8, "northing": 4795949.1, "time": "09:29:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752604, 43.313659]}, "properties": {"category": "real_shot", "line": "1077", "easting": 561030.7, "northing": 4795922.0, "time": "09:29:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752081, 43.313421]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560988.5, "northing": 4795895.2, "time": "09:30:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751557, 43.313184]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560946.2, "northing": 4795868.5, "time": "09:30:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751017, 43.312962]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560902.7, "northing": 4795843.5, "time": "09:30:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750526, 43.312691]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560863.1, "northing": 4795813.0, "time": "09:30:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75006, 43.312389]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560825.6, "northing": 4795779.1, "time": "09:31:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74959, 43.312091]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560787.8, "northing": 4795745.7, "time": "09:31:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749104, 43.311812]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560748.7, "northing": 4795714.4, "time": "09:31:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748563, 43.311596]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560705.0, "northing": 4795690.0, "time": "09:32:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748025, 43.311372]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560661.6, "northing": 4795664.7, "time": "09:32:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747492, 43.311142]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560618.6, "northing": 4795638.8, "time": "09:32:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746954, 43.31092]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560575.2, "northing": 4795613.7, "time": "09:32:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746444, 43.310668]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560534.1, "northing": 4795585.4, "time": "09:33:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745983, 43.310361]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560497.0, "northing": 4795551.0, "time": "09:33:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745501, 43.310076]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560458.2, "northing": 4795519.0, "time": "09:33:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74499, 43.309826]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560417.0, "northing": 4795490.8, "time": "09:34:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74449, 43.309565]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560376.7, "northing": 4795461.5, "time": "09:34:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743991, 43.309298]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560336.5, "northing": 4795431.5, "time": "09:34:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743476, 43.309051]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560295.0, "northing": 4795403.7, "time": "09:35:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742948, 43.308817]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560252.4, "northing": 4795377.3, "time": "09:35:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742443, 43.308559]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560211.7, "northing": 4795348.3, "time": "09:35:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.741948, 43.308289]}, "properties": {"category": "real_shot", "line": "1077", "easting": 560171.8, "northing": 4795317.9, "time": "09:35:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742323, 43.307898]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560202.6, "northing": 4795274.8, "time": "10:41:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74278, 43.308205]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560239.4, "northing": 4795309.2, "time": "10:42:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743252, 43.308496]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560277.4, "northing": 4795341.9, "time": "10:42:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743784, 43.308723]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560320.3, "northing": 4795367.4, "time": "10:42:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744351, 43.308913]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560366.1, "northing": 4795389.0, "time": "10:42:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744889, 43.309141]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560409.5, "northing": 4795414.7, "time": "10:43:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74539, 43.309399]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560449.9, "northing": 4795443.7, "time": "10:43:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745847, 43.309715]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560486.6, "northing": 4795479.1, "time": "10:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746342, 43.309983]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560526.5, "northing": 4795509.2, "time": "10:44:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746847, 43.310237]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560567.2, "northing": 4795537.8, "time": "10:44:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747364, 43.310494]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560608.9, "northing": 4795566.7, "time": "10:44:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747883, 43.31073]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560650.7, "northing": 4795593.3, "time": "10:45:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748383, 43.31099]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560691.0, "northing": 4795622.5, "time": "10:45:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748891, 43.311246]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560732.0, "northing": 4795651.4, "time": "10:45:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749415, 43.311486]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560774.2, "northing": 4795678.4, "time": "10:46:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749936, 43.311729]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560816.2, "northing": 4795705.8, "time": "10:46:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750436, 43.31199]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560856.5, "northing": 4795735.1, "time": "10:46:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750941, 43.31225]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560897.2, "northing": 4795764.3, "time": "10:47:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751453, 43.312501]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560938.5, "northing": 4795792.6, "time": "10:47:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751964, 43.31275]}, "properties": {"category": "real_shot", "line": "1079", "easting": 560979.7, "northing": 4795820.6, "time": "10:47:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752488, 43.312991]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561021.9, "northing": 4795847.8, "time": "10:48:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753018, 43.313221]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561064.7, "northing": 4795873.7, "time": "10:48:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753521, 43.313483]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561105.2, "northing": 4795903.1, "time": "10:48:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754032, 43.313732]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561146.4, "northing": 4795931.2, "time": "10:49:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754566, 43.313959]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561189.5, "northing": 4795956.8, "time": "10:49:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75507, 43.31422]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561230.1, "northing": 4795986.1, "time": "10:49:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755583, 43.314477]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561271.4, "northing": 4796015.1, "time": "10:50:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756089, 43.314728]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561312.2, "northing": 4796043.3, "time": "10:50:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756606, 43.314972]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561353.9, "northing": 4796070.8, "time": "10:50:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757085, 43.315259]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561392.4, "northing": 4796103.0, "time": "10:51:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757556, 43.315558]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561430.3, "northing": 4796136.5, "time": "10:51:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758032, 43.315845]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561468.6, "northing": 4796168.8, "time": "10:51:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758542, 43.316093]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561509.7, "northing": 4796196.7, "time": "10:52:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759072, 43.316329]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561552.5, "northing": 4796223.3, "time": "10:52:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759576, 43.316589]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561593.1, "northing": 4796252.5, "time": "10:52:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76007, 43.316855]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561632.9, "northing": 4796282.4, "time": "10:53:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760584, 43.317109]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561674.3, "northing": 4796311.0, "time": "10:53:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761106, 43.317344]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561716.4, "northing": 4796337.5, "time": "10:53:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761617, 43.3176]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561757.6, "northing": 4796366.3, "time": "10:54:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762123, 43.317858]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561798.3, "northing": 4796395.4, "time": "10:54:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762626, 43.318114]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561838.9, "northing": 4796424.1, "time": "10:54:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763145, 43.31836]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561880.7, "northing": 4796451.9, "time": "10:55:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763669, 43.3186]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561922.9, "northing": 4796478.9, "time": "10:55:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764165, 43.318865]}, "properties": {"category": "real_shot", "line": "1079", "easting": 561962.9, "northing": 4796508.7, "time": "10:55:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764662, 43.319132]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562002.9, "northing": 4796538.7, "time": "10:56:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765167, 43.319393]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562043.6, "northing": 4796568.1, "time": "10:56:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765681, 43.319641]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562085.0, "northing": 4796596.0, "time": "10:56:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766198, 43.319883]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562126.7, "northing": 4796623.3, "time": "10:57:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766722, 43.320127]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562168.9, "northing": 4796650.7, "time": "10:57:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767205, 43.320404]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562207.8, "northing": 4796681.9, "time": "10:57:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767705, 43.320671]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562248.1, "northing": 4796711.9, "time": "10:58:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768215, 43.320923]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562289.2, "northing": 4796740.3, "time": "10:58:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768734, 43.321165]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562331.0, "northing": 4796767.5, "time": "10:58:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769256, 43.321407]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562373.1, "northing": 4796794.8, "time": "10:59:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769766, 43.321659]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562414.2, "northing": 4796823.2, "time": "10:59:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770274, 43.321914]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562455.1, "northing": 4796851.9, "time": "10:59:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770772, 43.322179]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562495.2, "northing": 4796881.7, "time": "11:00:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771273, 43.322443]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562535.6, "northing": 4796911.3, "time": "11:00:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771797, 43.322679]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562577.8, "northing": 4796937.9, "time": "11:00:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772307, 43.322938]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562618.9, "northing": 4796967.1, "time": "11:01:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772817, 43.323189]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562660.0, "northing": 4796995.3, "time": "11:01:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773329, 43.323437]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562701.3, "northing": 4797023.3, "time": "11:01:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773857, 43.323674]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562743.8, "northing": 4797050.0, "time": "11:02:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774347, 43.323946]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562783.3, "northing": 4797080.6, "time": "11:02:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774831, 43.324229]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562822.2, "northing": 4797112.4, "time": "11:02:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775316, 43.324502]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562861.3, "northing": 4797143.1, "time": "11:03:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775825, 43.32476]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562902.3, "northing": 4797172.1, "time": "11:03:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776349, 43.325004]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562944.5, "northing": 4797199.6, "time": "11:03:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776849, 43.325263]}, "properties": {"category": "real_shot", "line": "1079", "easting": 562984.8, "northing": 4797228.7, "time": "11:04:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777357, 43.325518]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563025.7, "northing": 4797257.4, "time": "11:04:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777865, 43.325774]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563066.6, "northing": 4797286.2, "time": "11:04:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778374, 43.326024]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563107.6, "northing": 4797314.4, "time": "11:05:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778892, 43.326273]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563149.4, "northing": 4797342.4, "time": "11:05:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77941, 43.32652]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563191.1, "northing": 4797370.3, "time": "11:05:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779921, 43.326766]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563232.3, "northing": 4797398.0, "time": "11:06:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780444, 43.32701]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563274.4, "northing": 4797425.5, "time": "11:06:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780961, 43.327255]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563316.1, "northing": 4797453.0, "time": "11:06:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781458, 43.327523]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563356.1, "northing": 4797483.2, "time": "11:07:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781955, 43.327785]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563396.1, "northing": 4797512.7, "time": "11:07:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78245, 43.328058]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563436.0, "northing": 4797543.4, "time": "11:07:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782949, 43.328322]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563476.2, "northing": 4797573.0, "time": "11:08:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783462, 43.328569]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563517.5, "northing": 4797600.9, "time": "11:08:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783992, 43.328804]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563560.2, "northing": 4797627.4, "time": "11:08:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784503, 43.329058]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563601.4, "northing": 4797656.0, "time": "11:09:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784991, 43.329331]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563640.7, "northing": 4797686.7, "time": "11:09:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785482, 43.329605]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563680.2, "northing": 4797717.5, "time": "11:09:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78598, 43.32987]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563720.3, "northing": 4797747.3, "time": "11:10:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786505, 43.330109]}, "properties": {"category": "real_shot", "line": "1079", "easting": 563762.6, "northing": 4797774.2, "time": "11:10:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74251, 43.307702]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560218.0, "northing": 4795253.1, "time": "09:38:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743066, 43.307897]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560262.9, "northing": 4795275.2, "time": "09:38:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74364, 43.308083]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560309.3, "northing": 4795296.3, "time": "09:38:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744143, 43.308343]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560349.8, "northing": 4795325.5, "time": "09:38:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744648, 43.308602]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560390.5, "northing": 4795354.6, "time": "09:39:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745158, 43.308855]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560431.6, "northing": 4795383.1, "time": "09:39:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74567, 43.309105]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560472.9, "northing": 4795411.2, "time": "09:39:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746203, 43.309332]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560515.9, "northing": 4795436.8, "time": "09:40:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746725, 43.309573]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560558.0, "northing": 4795464.0, "time": "09:40:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747218, 43.309845]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560597.7, "northing": 4795494.5, "time": "09:40:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747715, 43.310111]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560637.7, "northing": 4795524.4, "time": "09:41:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748232, 43.310358]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560679.4, "northing": 4795552.2, "time": "09:41:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748761, 43.310588]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560722.1, "northing": 4795578.2, "time": "09:41:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749255, 43.31086]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560761.9, "northing": 4795608.7, "time": "09:42:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749759, 43.311118]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560802.5, "northing": 4795637.8, "time": "09:42:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750275, 43.311365]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560844.1, "northing": 4795665.6, "time": "09:42:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750772, 43.311633]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560884.1, "northing": 4795695.7, "time": "09:42:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751267, 43.311902]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560924.0, "northing": 4795725.9, "time": "09:43:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751771, 43.312161]}, "properties": {"category": "real_shot", "line": "1081", "easting": 560964.6, "northing": 4795755.1, "time": "09:43:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75228, 43.312414]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561005.6, "northing": 4795783.5, "time": "09:43:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752794, 43.312662]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561047.1, "northing": 4795811.5, "time": "09:44:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753309, 43.31291]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561088.6, "northing": 4795839.4, "time": "09:44:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753831, 43.313151]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561130.7, "northing": 4795866.5, "time": "09:44:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754334, 43.313412]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561171.2, "northing": 4795895.9, "time": "09:45:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754828, 43.313681]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561211.0, "northing": 4795926.1, "time": "09:45:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755322, 43.313951]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561250.8, "northing": 4795956.5, "time": "09:45:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755813, 43.314226]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561290.3, "northing": 4795987.3, "time": "09:45:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756314, 43.314487]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561330.7, "northing": 4796016.7, "time": "09:46:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756842, 43.314719]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561373.3, "northing": 4796042.9, "time": "09:46:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757357, 43.314968]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561414.8, "northing": 4796070.9, "time": "09:46:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75787, 43.31522]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561456.1, "northing": 4796099.2, "time": "09:47:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758393, 43.315457]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561498.3, "northing": 4796126.0, "time": "09:47:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758898, 43.315718]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561539.0, "northing": 4796155.3, "time": "09:47:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759411, 43.315966]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561580.3, "northing": 4796183.2, "time": "09:48:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759939, 43.3162]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561622.9, "northing": 4796209.6, "time": "09:48:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760449, 43.316454]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561664.0, "northing": 4796238.2, "time": "09:48:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760953, 43.316712]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561704.6, "northing": 4796267.2, "time": "09:48:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761475, 43.316952]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561746.7, "northing": 4796294.3, "time": "09:49:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761995, 43.317195]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561788.6, "northing": 4796321.6, "time": "09:49:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7625, 43.317454]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561829.3, "northing": 4796350.8, "time": "09:49:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763009, 43.317708]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561870.3, "northing": 4796379.4, "time": "09:50:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76351, 43.31797]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561910.7, "northing": 4796408.8, "time": "09:50:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76401, 43.318234]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561951.0, "northing": 4796438.5, "time": "09:50:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764529, 43.318477]}, "properties": {"category": "real_shot", "line": "1081", "easting": 561992.8, "northing": 4796465.9, "time": "09:51:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765034, 43.318736]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562033.5, "northing": 4796495.0, "time": "09:51:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76553, 43.319004]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562073.4, "northing": 4796525.1, "time": "09:51:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766017, 43.319281]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562112.6, "northing": 4796556.3, "time": "09:52:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766516, 43.319547]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562152.8, "northing": 4796586.2, "time": "09:52:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767026, 43.319799]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562193.9, "northing": 4796614.6, "time": "09:52:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767524, 43.320066]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562234.0, "northing": 4796644.6, "time": "09:52:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768021, 43.320331]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562274.1, "northing": 4796674.4, "time": "09:53:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768522, 43.320595]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562314.4, "northing": 4796704.1, "time": "09:53:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769036, 43.320843]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562355.8, "northing": 4796732.0, "time": "09:53:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769568, 43.321073]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562398.7, "northing": 4796757.9, "time": "09:54:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770081, 43.321322]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562440.1, "northing": 4796786.0, "time": "09:54:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770589, 43.321578]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562481.0, "northing": 4796814.8, "time": "09:54:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771084, 43.321847]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562520.9, "northing": 4796845.0, "time": "09:55:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771574, 43.322122]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562560.3, "northing": 4796875.9, "time": "09:55:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772078, 43.322382]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562600.9, "northing": 4796905.2, "time": "09:55:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772601, 43.32262]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562643.1, "northing": 4796932.0, "time": "09:55:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77311, 43.322876]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562684.1, "northing": 4796960.8, "time": "09:56:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773626, 43.323122]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562725.7, "northing": 4796988.5, "time": "09:56:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774158, 43.32335]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562768.6, "northing": 4797014.2, "time": "09:56:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774672, 43.3236]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562810.0, "northing": 4797042.4, "time": "09:57:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77518, 43.323856]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562850.9, "northing": 4797071.2, "time": "09:57:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775696, 43.324101]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562892.5, "northing": 4797098.8, "time": "09:57:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77622, 43.324339]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562934.7, "northing": 4797125.6, "time": "09:58:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77675, 43.324571]}, "properties": {"category": "real_shot", "line": "1081", "easting": 562977.5, "northing": 4797151.8, "time": "09:58:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777261, 43.324826]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563018.6, "northing": 4797180.5, "time": "09:58:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777774, 43.325074]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563060.0, "northing": 4797208.4, "time": "09:59:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778297, 43.325312]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563102.1, "northing": 4797235.2, "time": "09:59:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778828, 43.325543]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563144.9, "northing": 4797261.3, "time": "09:59:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779349, 43.325786]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563186.9, "northing": 4797288.7, "time": "09:59:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779822, 43.326076]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563225.0, "northing": 4797321.3, "time": "10:00:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780294, 43.326373]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563262.9, "northing": 4797354.6, "time": "10:00:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780771, 43.32666]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563301.3, "northing": 4797386.8, "time": "10:00:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781274, 43.326919]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563341.8, "northing": 4797416.0, "time": "10:01:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781774, 43.327183]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563382.1, "northing": 4797445.7, "time": "10:01:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782259, 43.327464]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563421.1, "northing": 4797477.2, "time": "10:01:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782758, 43.327729]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563461.3, "northing": 4797507.0, "time": "10:02:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783266, 43.327984]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563502.2, "northing": 4797535.8, "time": "10:02:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783776, 43.328236]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563543.3, "northing": 4797564.1, "time": "10:02:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784294, 43.328482]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563585.0, "northing": 4797591.8, "time": "10:02:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78481, 43.328727]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563626.6, "northing": 4797619.5, "time": "10:03:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785311, 43.32899]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563667.0, "northing": 4797649.0, "time": "10:03:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785806, 43.329259]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563706.8, "northing": 4797679.3, "time": "10:03:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786319, 43.32951]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563748.1, "northing": 4797707.5, "time": "10:04:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786828, 43.329764]}, "properties": {"category": "real_shot", "line": "1081", "easting": 563789.1, "northing": 4797736.2, "time": "10:04:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787247, 43.329295]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563823.6, "northing": 4797684.4, "time": "10:12:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786758, 43.32908]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563784.2, "northing": 4797660.1, "time": "10:12:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786201, 43.328841]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563739.3, "northing": 4797633.2, "time": "10:13:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785646, 43.328598]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563694.5, "northing": 4797605.8, "time": "10:13:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785133, 43.328366]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563653.2, "northing": 4797579.6, "time": "10:14:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784621, 43.328125]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563611.9, "northing": 4797552.5, "time": "10:14:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784139, 43.327846]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563573.1, "northing": 4797521.1, "time": "10:14:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783636, 43.327589]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563532.6, "northing": 4797492.2, "time": "10:14:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783135, 43.327324]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563492.3, "northing": 4797462.4, "time": "10:15:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782613, 43.327086]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563450.2, "northing": 4797435.5, "time": "10:15:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782115, 43.32682]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563410.1, "northing": 4797405.6, "time": "10:15:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781622, 43.326549]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563370.4, "northing": 4797375.1, "time": "10:16:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781099, 43.326311]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563328.3, "northing": 4797348.3, "time": "10:16:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780594, 43.32605]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563287.6, "northing": 4797318.9, "time": "10:16:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780081, 43.325798]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563246.3, "northing": 4797290.6, "time": "10:16:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779559, 43.325562]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563204.2, "northing": 4797264.0, "time": "10:17:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779039, 43.325318]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563162.3, "northing": 4797236.5, "time": "10:17:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778544, 43.325049]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563122.4, "northing": 4797206.2, "time": "10:17:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778051, 43.324777]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563082.7, "northing": 4797175.6, "time": "10:18:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777553, 43.324512]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563042.6, "northing": 4797145.8, "time": "10:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777045, 43.324258]}, "properties": {"category": "real_shot", "line": "1083", "easting": 563001.7, "northing": 4797117.2, "time": "10:18:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776524, 43.324017]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562959.7, "northing": 4797090.1, "time": "10:18:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776017, 43.323759]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562918.9, "northing": 4797061.1, "time": "10:19:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775521, 43.323491]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562878.9, "northing": 4797030.9, "time": "10:19:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775013, 43.323238]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562838.0, "northing": 4797002.4, "time": "10:19:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774499, 43.322987]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562796.6, "northing": 4796974.2, "time": "10:20:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773978, 43.322748]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562754.6, "northing": 4796947.2, "time": "10:20:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773481, 43.322479]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562714.6, "northing": 4796917.0, "time": "10:20:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772982, 43.322213]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562674.4, "northing": 4796887.1, "time": "10:20:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77247, 43.321964]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562633.1, "northing": 4796859.0, "time": "10:21:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771968, 43.321702]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562592.7, "northing": 4796829.6, "time": "10:21:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771462, 43.321445]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562551.9, "northing": 4796800.7, "time": "10:21:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770948, 43.321195]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562510.5, "northing": 4796772.5, "time": "10:22:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770426, 43.320957]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562468.4, "northing": 4796745.7, "time": "10:22:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769923, 43.320695]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562427.9, "northing": 4796716.2, "time": "10:22:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769426, 43.320428]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562387.9, "northing": 4796686.2, "time": "10:22:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768927, 43.320163]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562347.7, "northing": 4796656.4, "time": "10:23:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768422, 43.319904]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562307.0, "northing": 4796627.3, "time": "10:23:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767907, 43.319657]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562265.5, "northing": 4796599.4, "time": "10:23:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767382, 43.319422]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562223.2, "northing": 4796572.9, "time": "10:23:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766872, 43.319166]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562182.1, "northing": 4796544.1, "time": "10:24:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766372, 43.318904]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562141.8, "northing": 4796514.7, "time": "10:24:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765874, 43.318638]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562101.7, "northing": 4796484.7, "time": "10:24:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765369, 43.318379]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562061.0, "northing": 4796455.6, "time": "10:25:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764847, 43.31814]}, "properties": {"category": "real_shot", "line": "1083", "easting": 562018.9, "northing": 4796428.7, "time": "10:25:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764341, 43.317879]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561978.2, "northing": 4796399.3, "time": "10:25:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763829, 43.31763]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561936.9, "northing": 4796371.3, "time": "10:25:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763313, 43.317385]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561895.3, "northing": 4796343.7, "time": "10:26:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762787, 43.317149]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561852.9, "northing": 4796317.1, "time": "10:26:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762267, 43.316905]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561811.0, "northing": 4796289.6, "time": "10:26:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761783, 43.316624]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561772.0, "northing": 4796258.1, "time": "10:27:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761292, 43.316349]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561732.5, "northing": 4796227.2, "time": "10:27:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760791, 43.316089]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561692.1, "northing": 4796197.9, "time": "10:27:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76027, 43.315847]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561650.1, "northing": 4796170.6, "time": "10:27:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759734, 43.315624]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561606.9, "northing": 4796145.5, "time": "10:28:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759224, 43.315369]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561565.8, "northing": 4796116.8, "time": "10:28:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758729, 43.3151]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561525.9, "northing": 4796086.6, "time": "10:28:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758242, 43.314822]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561486.7, "northing": 4796055.3, "time": "10:29:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757748, 43.314551]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561446.9, "northing": 4796024.9, "time": "10:29:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757231, 43.314307]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561405.2, "northing": 4795997.4, "time": "10:29:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756711, 43.314065]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561363.3, "northing": 4795970.1, "time": "10:29:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756219, 43.313792]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561323.7, "northing": 4795939.4, "time": "10:30:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755723, 43.313526]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561283.7, "northing": 4795909.5, "time": "10:30:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755222, 43.313261]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561243.4, "northing": 4795879.8, "time": "10:30:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754715, 43.313006]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561202.5, "northing": 4795851.0, "time": "10:31:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754195, 43.312762]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561160.6, "northing": 4795823.6, "time": "10:31:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753662, 43.312535]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561117.6, "northing": 4795798.0, "time": "10:31:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753153, 43.312282]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561076.6, "northing": 4795769.5, "time": "10:31:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752653, 43.312017]}, "properties": {"category": "real_shot", "line": "1083", "easting": 561036.3, "northing": 4795739.7, "time": "10:32:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752137, 43.311769]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560994.7, "northing": 4795711.8, "time": "10:32:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751616, 43.31153]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560952.7, "northing": 4795684.9, "time": "10:32:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751104, 43.311278]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560911.4, "northing": 4795656.5, "time": "10:33:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750606, 43.311013]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560871.3, "northing": 4795626.7, "time": "10:33:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7501, 43.310755]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560830.5, "northing": 4795597.7, "time": "10:33:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749572, 43.310522]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560787.9, "northing": 4795571.4, "time": "10:33:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749066, 43.310265]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560747.1, "northing": 4795542.5, "time": "10:34:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748559, 43.310007]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560706.3, "northing": 4795513.5, "time": "10:34:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748041, 43.309764]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560664.5, "northing": 4795486.2, "time": "10:34:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747536, 43.309506]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560623.8, "northing": 4795457.1, "time": "10:35:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747043, 43.309235]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560584.1, "northing": 4795426.7, "time": "10:35:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746551, 43.308963]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560544.5, "northing": 4795396.1, "time": "10:35:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746045, 43.308704]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560503.7, "northing": 4795367.0, "time": "10:35:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745529, 43.308459]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560462.1, "northing": 4795339.4, "time": "10:36:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745027, 43.308198]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560421.6, "northing": 4795310.0, "time": "10:36:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744518, 43.307944]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560380.6, "northing": 4795281.5, "time": "10:36:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743992, 43.307707]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560338.2, "northing": 4795254.8, "time": "10:37:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743484, 43.307452]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560297.2, "northing": 4795226.1, "time": "10:37:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.742979, 43.307195]}, "properties": {"category": "real_shot", "line": "1083", "easting": 560256.5, "northing": 4795197.2, "time": "10:37:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787498, 43.329034]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563844.2, "northing": 4797655.6, "time": "10:06:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787027, 43.328754]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563806.3, "northing": 4797624.1, "time": "10:06:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786536, 43.32848]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563766.8, "northing": 4797593.3, "time": "10:07:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785932, 43.32833]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563718.0, "northing": 4797576.2, "time": "10:07:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785439, 43.32806]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563678.3, "northing": 4797545.9, "time": "10:07:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784972, 43.327757]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563640.8, "northing": 4797511.9, "time": "10:07:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784504, 43.327462]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563603.1, "northing": 4797478.7, "time": "10:08:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784021, 43.327178]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563564.3, "northing": 4797446.8, "time": "10:08:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783499, 43.326939]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563522.2, "northing": 4797419.9, "time": "10:08:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782965, 43.326714]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563479.1, "northing": 4797394.5, "time": "10:09:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782468, 43.326446]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563439.1, "northing": 4797364.4, "time": "10:09:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781964, 43.326184]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563398.5, "northing": 4797334.9, "time": "10:09:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781445, 43.325943]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563356.7, "northing": 4797307.7, "time": "10:09:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780921, 43.325703]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563314.5, "northing": 4797280.7, "time": "10:10:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780414, 43.325448]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563273.6, "northing": 4797252.0, "time": "10:10:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779896, 43.325203]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563231.9, "northing": 4797224.4, "time": "10:10:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779378, 43.32496]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563190.1, "northing": 4797197.0, "time": "10:11:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778883, 43.324689]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563150.3, "northing": 4797166.5, "time": "10:11:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778391, 43.324417]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563110.7, "northing": 4797135.9, "time": "10:11:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777886, 43.324159]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563070.0, "northing": 4797106.9, "time": "10:12:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777363, 43.32392]}, "properties": {"category": "real_shot", "line": "1085", "easting": 563027.8, "northing": 4797079.9, "time": "10:12:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776852, 43.323668]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562986.7, "northing": 4797051.6, "time": "10:12:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776357, 43.323399]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562946.8, "northing": 4797021.3, "time": "10:12:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775858, 43.323135]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562906.6, "northing": 4796991.6, "time": "10:13:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775349, 43.322879]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562865.6, "northing": 4796962.8, "time": "10:13:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774834, 43.322633]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562824.1, "northing": 4796935.1, "time": "10:13:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774333, 43.32237]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562783.8, "northing": 4796905.5, "time": "10:14:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773834, 43.322105]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562743.6, "northing": 4796875.7, "time": "10:14:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77333, 43.321846]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562703.0, "northing": 4796846.6, "time": "10:14:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77282, 43.321591]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562661.9, "northing": 4796817.9, "time": "10:14:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772305, 43.321343]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562620.4, "northing": 4796790.0, "time": "10:15:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771789, 43.321097]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562578.8, "northing": 4796762.2, "time": "10:15:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771264, 43.320861]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562536.5, "northing": 4796735.7, "time": "10:15:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770759, 43.320603]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562495.8, "northing": 4796706.6, "time": "10:16:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770255, 43.320341]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562455.2, "northing": 4796677.2, "time": "10:16:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769743, 43.320093]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562413.9, "northing": 4796649.2, "time": "10:16:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76922, 43.319852]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562371.8, "northing": 4796622.1, "time": "10:16:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768722, 43.319587]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562331.7, "northing": 4796592.3, "time": "10:17:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768227, 43.319317]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562291.8, "northing": 4796561.9, "time": "10:17:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767727, 43.319055]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562251.5, "northing": 4796532.4, "time": "10:17:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767219, 43.3188]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562210.6, "northing": 4796503.7, "time": "10:18:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766709, 43.318545]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562169.5, "northing": 4796475.1, "time": "10:18:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766194, 43.318299]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562128.0, "northing": 4796447.3, "time": "10:18:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765679, 43.31805]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562086.5, "northing": 4796419.3, "time": "10:18:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765157, 43.317811]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562044.4, "northing": 4796392.4, "time": "10:19:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764659, 43.317545]}, "properties": {"category": "real_shot", "line": "1085", "easting": 562004.3, "northing": 4796362.5, "time": "10:19:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764162, 43.317277]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561964.3, "northing": 4796332.3, "time": "10:19:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763661, 43.317014]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561923.9, "northing": 4796302.8, "time": "10:20:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763157, 43.316755]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561883.3, "northing": 4796273.6, "time": "10:20:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762651, 43.316498]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561842.5, "northing": 4796244.7, "time": "10:20:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762142, 43.316245]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561801.5, "northing": 4796216.2, "time": "10:21:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761627, 43.315997]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561760.0, "northing": 4796188.3, "time": "10:21:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761105, 43.315755]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561717.9, "northing": 4796161.1, "time": "10:21:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760584, 43.315515]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561675.9, "northing": 4796134.0, "time": "10:21:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760087, 43.315247]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561635.9, "northing": 4796103.9, "time": "10:22:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759585, 43.314987]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561595.4, "northing": 4796074.6, "time": "10:22:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759073, 43.314735]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561554.2, "northing": 4796046.3, "time": "10:22:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758559, 43.314487]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561512.7, "northing": 4796018.4, "time": "10:23:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758036, 43.314247]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561470.6, "northing": 4795991.3, "time": "10:23:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75754, 43.31398]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561430.6, "northing": 4795961.3, "time": "10:23:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757038, 43.313718]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561390.2, "northing": 4795931.8, "time": "10:23:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756527, 43.313465]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561349.0, "northing": 4795903.4, "time": "10:24:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756006, 43.313227]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561307.0, "northing": 4795876.5, "time": "10:24:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755504, 43.312964]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561266.5, "northing": 4795847.0, "time": "10:24:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755006, 43.312696]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561226.4, "northing": 4795816.8, "time": "10:25:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754497, 43.312443]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561185.4, "northing": 4795788.4, "time": "10:25:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753982, 43.312195]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561143.9, "northing": 4795760.5, "time": "10:25:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753488, 43.311927]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561104.1, "northing": 4795730.3, "time": "10:25:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752988, 43.311662]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561063.8, "northing": 4795700.5, "time": "10:26:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752469, 43.311417]}, "properties": {"category": "real_shot", "line": "1085", "easting": 561022.0, "northing": 4795673.0, "time": "10:26:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751957, 43.311169]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560980.7, "northing": 4795645.0, "time": "10:26:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751459, 43.310903]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560940.6, "northing": 4795615.1, "time": "10:27:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750947, 43.310652]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560899.3, "northing": 4795586.9, "time": "10:27:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75043, 43.310406]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560857.6, "northing": 4795559.2, "time": "10:27:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749927, 43.310146]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560817.1, "northing": 4795529.9, "time": "10:28:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749423, 43.309886]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560776.5, "northing": 4795500.7, "time": "10:28:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748916, 43.309629]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560735.6, "northing": 4795471.8, "time": "10:28:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74841, 43.309373]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560694.8, "northing": 4795443.0, "time": "10:28:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747905, 43.309114]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560654.1, "northing": 4795413.9, "time": "10:29:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747397, 43.308859]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560613.2, "northing": 4795385.2, "time": "10:29:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746886, 43.308607]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560572.0, "northing": 4795356.8, "time": "10:29:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746373, 43.308358]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560530.6, "northing": 4795328.8, "time": "10:30:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745859, 43.308108]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560489.2, "northing": 4795300.7, "time": "10:30:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745348, 43.307858]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560448.0, "northing": 4795272.5, "time": "10:30:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744831, 43.307611]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560406.3, "northing": 4795244.7, "time": "10:30:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744312, 43.307368]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560364.5, "northing": 4795217.4, "time": "10:31:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743803, 43.307115]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560323.4, "northing": 4795188.9, "time": "10:31:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743318, 43.306835]}, "properties": {"category": "real_shot", "line": "1085", "easting": 560284.4, "northing": 4795157.4, "time": "10:31:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743757, 43.306399]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560320.4, "northing": 4795109.3, "time": "09:43:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744199, 43.306698]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560356.0, "northing": 4795142.9, "time": "09:44:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74467, 43.306991]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560393.9, "northing": 4795175.7, "time": "09:44:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745195, 43.307224]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560436.2, "northing": 4795202.0, "time": "09:44:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745718, 43.307464]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560478.4, "northing": 4795229.0, "time": "09:45:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746234, 43.307712]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560520.0, "northing": 4795257.0, "time": "09:45:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746745, 43.307964]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560561.2, "northing": 4795285.3, "time": "09:45:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747246, 43.308225]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560601.6, "northing": 4795314.6, "time": "09:45:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747744, 43.308492]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560641.7, "northing": 4795344.7, "time": "09:46:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748272, 43.308725]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560684.3, "northing": 4795370.9, "time": "09:46:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748778, 43.308981]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560725.1, "northing": 4795399.7, "time": "09:46:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749292, 43.309235]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560766.5, "northing": 4795428.3, "time": "09:47:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749814, 43.309467]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560808.6, "northing": 4795454.5, "time": "09:47:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750334, 43.309716]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560850.5, "northing": 4795482.5, "time": "09:47:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750828, 43.309986]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560890.3, "northing": 4795512.8, "time": "09:48:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751318, 43.310258]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560929.8, "northing": 4795543.4, "time": "09:48:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751807, 43.31053]}, "properties": {"category": "real_shot", "line": "1087", "easting": 560969.2, "northing": 4795574.0, "time": "09:48:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752319, 43.310788]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561010.4, "northing": 4795603.0, "time": "09:49:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752853, 43.311011]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561053.5, "northing": 4795628.1, "time": "09:49:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753376, 43.31125]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561095.7, "northing": 4795655.1, "time": "09:49:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753864, 43.311525]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561135.0, "northing": 4795686.0, "time": "09:49:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754357, 43.311799]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561174.7, "northing": 4795716.7, "time": "09:50:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754862, 43.312057]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561215.4, "northing": 4795745.8, "time": "09:50:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755364, 43.31232]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561255.8, "northing": 4795775.3, "time": "09:50:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75588, 43.312566]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561297.4, "northing": 4795803.0, "time": "09:51:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756402, 43.312803]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561339.5, "northing": 4795829.8, "time": "09:51:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756908, 43.313061]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561380.3, "northing": 4795858.8, "time": "09:51:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757413, 43.313322]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561421.0, "northing": 4795888.1, "time": "09:52:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757915, 43.31358]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561461.4, "northing": 4795917.1, "time": "09:52:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758422, 43.313839]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561502.3, "northing": 4795946.3, "time": "09:52:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758925, 43.314101]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561542.8, "northing": 4795975.7, "time": "09:52:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759428, 43.314357]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561583.3, "northing": 4796004.6, "time": "09:53:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759931, 43.314621]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561623.9, "northing": 4796034.2, "time": "09:53:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760428, 43.314884]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561663.9, "northing": 4796063.8, "time": "09:53:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760942, 43.315134]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561705.3, "northing": 4796092.0, "time": "09:54:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761467, 43.315368]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561747.7, "northing": 4796118.3, "time": "09:54:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761998, 43.315605]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561790.5, "northing": 4796145.0, "time": "09:54:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762501, 43.315863]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561831.0, "northing": 4796174.1, "time": "09:55:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763011, 43.316118]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561872.1, "northing": 4796202.8, "time": "09:55:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763526, 43.316366]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561913.6, "northing": 4796230.7, "time": "09:55:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764041, 43.316614]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561955.1, "northing": 4796258.6, "time": "09:56:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764551, 43.31686]}, "properties": {"category": "real_shot", "line": "1087", "easting": 561996.2, "northing": 4796286.3, "time": "09:56:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765081, 43.317096]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562039.0, "northing": 4796312.9, "time": "09:56:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765613, 43.317328]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562081.9, "northing": 4796339.1, "time": "09:57:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766122, 43.317579]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562122.9, "northing": 4796367.3, "time": "09:57:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766591, 43.317878]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562160.6, "northing": 4796400.9, "time": "09:57:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767055, 43.318175]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562197.9, "northing": 4796434.2, "time": "09:57:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767523, 43.318479]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562235.6, "northing": 4796468.3, "time": "09:58:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768016, 43.318748]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562275.3, "northing": 4796498.6, "time": "09:58:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768554, 43.318967]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562318.7, "northing": 4796523.3, "time": "09:58:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769081, 43.319204]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562361.2, "northing": 4796550.0, "time": "09:59:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769609, 43.319444]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562403.7, "northing": 4796577.0, "time": "09:59:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770116, 43.319695]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562444.6, "northing": 4796605.3, "time": "09:59:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770625, 43.31995]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562485.6, "northing": 4796634.0, "time": "10:00:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771127, 43.320212]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562526.0, "northing": 4796663.5, "time": "10:00:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771618, 43.320477]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562565.6, "northing": 4796693.3, "time": "10:00:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772133, 43.320738]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562607.1, "northing": 4796722.6, "time": "10:01:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772657, 43.320971]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562649.3, "northing": 4796748.9, "time": "10:01:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773182, 43.321205]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562691.6, "northing": 4796775.3, "time": "10:01:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773693, 43.321461]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562732.8, "northing": 4796804.1, "time": "10:02:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774207, 43.321715]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562774.2, "northing": 4796832.7, "time": "10:02:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774699, 43.321981]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562813.8, "northing": 4796862.6, "time": "10:02:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775204, 43.322237]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562854.5, "northing": 4796891.4, "time": "10:02:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775732, 43.322468]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562897.1, "northing": 4796917.5, "time": "10:03:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776254, 43.322715]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562939.2, "northing": 4796945.3, "time": "10:03:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776739, 43.322997]}, "properties": {"category": "real_shot", "line": "1087", "easting": 562978.2, "northing": 4796977.0, "time": "10:03:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777216, 43.323278]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563016.6, "northing": 4797008.6, "time": "10:04:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77772, 43.323538]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563057.2, "northing": 4797037.8, "time": "10:04:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778249, 43.323773]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563099.8, "northing": 4797064.3, "time": "10:04:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778766, 43.324017]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563141.5, "northing": 4797091.8, "time": "10:05:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779277, 43.324269]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563182.7, "northing": 4797120.2, "time": "10:05:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779784, 43.324529]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563223.5, "northing": 4797149.4, "time": "10:05:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780281, 43.324791]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563263.5, "northing": 4797178.9, "time": "10:06:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780787, 43.325057]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563304.3, "northing": 4797208.8, "time": "10:06:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781295, 43.325308]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563345.2, "northing": 4797237.1, "time": "10:06:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781815, 43.325552]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563387.1, "northing": 4797264.6, "time": "10:07:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78234, 43.325784]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563429.4, "northing": 4797290.7, "time": "10:07:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782855, 43.326037]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563470.9, "northing": 4797319.2, "time": "10:07:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783327, 43.326323]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563508.9, "northing": 4797351.3, "time": "10:07:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783822, 43.326597]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563548.7, "northing": 4797382.2, "time": "10:08:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784341, 43.326837]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563590.6, "northing": 4797409.2, "time": "10:08:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784869, 43.327075]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563633.1, "northing": 4797436.0, "time": "10:08:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785387, 43.327322]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563674.9, "northing": 4797463.9, "time": "10:09:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785909, 43.327562]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563716.9, "northing": 4797490.9, "time": "10:09:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786399, 43.327834]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563756.4, "northing": 4797521.5, "time": "10:09:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786896, 43.328098]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563796.4, "northing": 4797551.2, "time": "10:10:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787403, 43.328357]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563837.2, "northing": 4797580.3, "time": "10:10:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787921, 43.328602]}, "properties": {"category": "real_shot", "line": "1087", "easting": 563879.0, "northing": 4797607.9, "time": "10:10:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.743889, 43.306225]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560331.3, "northing": 4795090.1, "time": "10:35:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744488, 43.30638]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560379.7, "northing": 4795107.8, "time": "10:35:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745118, 43.306516]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560430.7, "northing": 4795123.3, "time": "10:35:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745624, 43.306773]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560471.5, "northing": 4795152.2, "time": "10:36:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746027, 43.307137]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560503.8, "northing": 4795192.9, "time": "10:36:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746479, 43.307455]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560540.1, "northing": 4795228.6, "time": "10:36:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746993, 43.307698]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560581.6, "northing": 4795255.9, "time": "10:37:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747519, 43.307935]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560624.0, "northing": 4795282.6, "time": "10:37:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748033, 43.308186]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560665.4, "northing": 4795310.9, "time": "10:37:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748521, 43.308462]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560704.7, "northing": 4795341.9, "time": "10:38:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749024, 43.30872]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560745.3, "northing": 4795370.9, "time": "10:38:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749566, 43.308937]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560789.0, "northing": 4795395.4, "time": "10:38:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750109, 43.309158]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560832.8, "northing": 4795420.3, "time": "10:38:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75063, 43.3094]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560874.8, "northing": 4795447.6, "time": "10:39:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751136, 43.309656]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560915.6, "northing": 4795476.4, "time": "10:39:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751632, 43.309924]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560955.6, "northing": 4795506.5, "time": "10:39:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752117, 43.310205]}, "properties": {"category": "real_shot", "line": "1089", "easting": 560994.6, "northing": 4795538.1, "time": "10:40:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752627, 43.310457]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561035.7, "northing": 4795566.4, "time": "10:40:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753163, 43.310681]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561079.0, "northing": 4795591.7, "time": "10:40:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753679, 43.310929]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561120.6, "northing": 4795619.6, "time": "10:41:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754192, 43.311178]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561161.9, "northing": 4795647.7, "time": "10:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754709, 43.311424]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561203.6, "northing": 4795675.4, "time": "10:41:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75524, 43.311653]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561246.4, "northing": 4795701.2, "time": "10:41:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755749, 43.311909]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561287.5, "northing": 4795730.0, "time": "10:42:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756248, 43.312173]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561327.7, "northing": 4795759.7, "time": "10:42:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756767, 43.312414]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561369.5, "northing": 4795786.8, "time": "10:42:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757278, 43.312669]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561410.7, "northing": 4795815.5, "time": "10:43:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757772, 43.312938]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561450.5, "northing": 4795845.7, "time": "10:43:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758281, 43.313192]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561491.5, "northing": 4795874.3, "time": "10:43:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758791, 43.313445]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561532.6, "northing": 4795902.8, "time": "10:44:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759285, 43.313715]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561572.4, "northing": 4795933.2, "time": "10:44:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759789, 43.313976]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561613.0, "northing": 4795962.5, "time": "10:44:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760308, 43.314218]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561654.8, "northing": 4795989.8, "time": "10:45:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760832, 43.314456]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561697.1, "northing": 4796016.6, "time": "10:45:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761312, 43.314741]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561735.7, "northing": 4796048.6, "time": "10:45:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761805, 43.315014]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561775.4, "northing": 4796079.3, "time": "10:45:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762329, 43.315249]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561817.7, "northing": 4796105.8, "time": "10:46:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762859, 43.315481]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561860.4, "northing": 4796131.9, "time": "10:46:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763342, 43.315765]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561899.3, "northing": 4796163.8, "time": "10:46:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763812, 43.316062]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561937.1, "northing": 4796197.1, "time": "10:47:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764308, 43.316326]}, "properties": {"category": "real_shot", "line": "1089", "easting": 561977.1, "northing": 4796226.8, "time": "10:47:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764834, 43.316562]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562019.5, "northing": 4796253.4, "time": "10:47:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765348, 43.316811]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562060.9, "northing": 4796281.5, "time": "10:48:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765862, 43.317061]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562102.3, "northing": 4796309.6, "time": "10:48:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766378, 43.317307]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562143.9, "northing": 4796337.3, "time": "10:48:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766904, 43.317544]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562186.3, "northing": 4796364.0, "time": "10:48:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767415, 43.317796]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562227.5, "northing": 4796392.4, "time": "10:49:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767905, 43.31807]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562267.0, "northing": 4796423.2, "time": "10:49:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768397, 43.318342]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562306.6, "northing": 4796453.8, "time": "10:49:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768921, 43.318579]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562348.8, "northing": 4796480.5, "time": "10:50:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76943, 43.318835]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562389.8, "northing": 4796509.3, "time": "10:50:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769931, 43.319097]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562430.2, "northing": 4796538.8, "time": "10:50:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770447, 43.319342]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562471.8, "northing": 4796566.4, "time": "10:51:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770968, 43.319584]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562513.8, "northing": 4796593.6, "time": "10:51:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771472, 43.319843]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562554.4, "northing": 4796622.7, "time": "10:51:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771971, 43.320109]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562594.6, "northing": 4796652.7, "time": "10:51:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772469, 43.320375]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562634.7, "northing": 4796682.6, "time": "10:52:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772974, 43.320631]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562675.4, "northing": 4796711.4, "time": "10:52:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773494, 43.320874]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562717.3, "northing": 4796738.8, "time": "10:52:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773996, 43.321138]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562757.7, "northing": 4796768.5, "time": "10:53:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774484, 43.321413]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562797.0, "northing": 4796799.4, "time": "10:53:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774989, 43.321673]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562837.7, "northing": 4796828.6, "time": "10:53:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775504, 43.321919]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562879.2, "northing": 4796856.3, "time": "10:54:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776025, 43.32216]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562921.2, "northing": 4796883.5, "time": "10:54:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776517, 43.322434]}, "properties": {"category": "real_shot", "line": "1089", "easting": 562960.8, "northing": 4796914.3, "time": "10:54:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777019, 43.322695]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563001.2, "northing": 4796943.7, "time": "10:54:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777541, 43.322935]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563043.3, "northing": 4796970.7, "time": "10:55:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778045, 43.323195]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563083.9, "northing": 4797000.0, "time": "10:55:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778542, 43.323461]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563123.9, "northing": 4797029.9, "time": "10:55:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779056, 43.32371]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563165.3, "northing": 4797057.9, "time": "10:56:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779566, 43.323963]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563206.4, "northing": 4797086.4, "time": "10:56:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780068, 43.324226]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563246.8, "northing": 4797116.0, "time": "10:56:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780572, 43.324486]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563287.4, "northing": 4797145.2, "time": "10:57:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781079, 43.324739]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563328.3, "northing": 4797173.7, "time": "10:57:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781593, 43.324989]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563369.7, "northing": 4797201.9, "time": "10:57:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782109, 43.325235]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563411.3, "northing": 4797229.6, "time": "10:57:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782605, 43.325504]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563451.2, "northing": 4797259.8, "time": "10:58:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783104, 43.325769]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563491.4, "northing": 4797289.6, "time": "10:58:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783611, 43.326025]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563532.2, "northing": 4797318.5, "time": "10:58:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784131, 43.326267]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563574.1, "northing": 4797345.7, "time": "10:59:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784649, 43.326513]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563615.9, "northing": 4797373.4, "time": "10:59:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785152, 43.326772]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563656.4, "northing": 4797402.6, "time": "10:59:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78566, 43.327028]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563697.3, "northing": 4797431.4, "time": "11:00:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786174, 43.327276]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563738.7, "northing": 4797459.4, "time": "11:00:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786689, 43.327525]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563780.2, "northing": 4797487.4, "time": "11:00:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787206, 43.327769]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563821.9, "northing": 4797514.9, "time": "11:00:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787729, 43.328008]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563864.0, "northing": 4797541.8, "time": "11:01:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788246, 43.328255]}, "properties": {"category": "real_shot", "line": "1089", "easting": 563905.7, "northing": 4797569.6, "time": "11:01:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788617, 43.327854]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563936.2, "northing": 4797525.4, "time": "09:15:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788117, 43.327592]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563895.9, "northing": 4797495.9, "time": "09:16:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787631, 43.327317]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563856.8, "northing": 4797465.0, "time": "09:16:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787071, 43.327122]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563811.6, "northing": 4797442.9, "time": "09:16:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786497, 43.326931]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563765.3, "northing": 4797421.3, "time": "09:17:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78597, 43.326699]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563722.8, "northing": 4797395.1, "time": "09:17:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785476, 43.32643]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563683.0, "northing": 4797364.9, "time": "09:17:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785014, 43.326125]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563645.9, "northing": 4797330.6, "time": "09:17:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784549, 43.325822]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563608.5, "northing": 4797296.6, "time": "09:18:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784049, 43.32556]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563568.2, "northing": 4797267.1, "time": "09:18:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783529, 43.325318]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563526.3, "northing": 4797239.9, "time": "09:18:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78302, 43.325063]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563485.3, "northing": 4797211.2, "time": "09:19:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782513, 43.324808]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563444.5, "northing": 4797182.5, "time": "09:19:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782003, 43.324552]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563403.4, "northing": 4797153.7, "time": "09:19:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781497, 43.324297]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563362.6, "northing": 4797124.9, "time": "09:19:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780994, 43.324037]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563322.1, "northing": 4797095.7, "time": "09:20:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78049, 43.323776]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563281.5, "northing": 4797066.3, "time": "09:20:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779984, 43.323517]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563240.8, "northing": 4797037.2, "time": "09:20:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779478, 43.323263]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563200.0, "northing": 4797008.6, "time": "09:20:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778967, 43.32301]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563158.8, "northing": 4796980.1, "time": "09:21:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778459, 43.322756]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563117.9, "northing": 4796951.5, "time": "09:21:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777948, 43.322505]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563076.7, "northing": 4796923.2, "time": "09:21:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777426, 43.322262]}, "properties": {"category": "real_shot", "line": "1091", "easting": 563034.7, "northing": 4796895.9, "time": "09:22:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776908, 43.32202]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562992.9, "northing": 4796868.6, "time": "09:22:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776379, 43.321784]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562950.3, "northing": 4796842.0, "time": "09:22:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775882, 43.32152]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562910.2, "northing": 4796812.3, "time": "09:22:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775385, 43.32125]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562870.2, "northing": 4796782.0, "time": "09:23:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774882, 43.32099]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562829.7, "northing": 4796752.7, "time": "09:23:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77436, 43.320751]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562787.6, "northing": 4796725.8, "time": "09:23:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773856, 43.320493]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562747.0, "northing": 4796696.7, "time": "09:24:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773351, 43.320233]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562706.3, "northing": 4796667.5, "time": "09:24:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77284, 43.31998]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562665.2, "northing": 4796639.0, "time": "09:24:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772328, 43.31973]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562623.9, "northing": 4796610.9, "time": "09:24:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771798, 43.319498]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562581.2, "northing": 4796584.7, "time": "09:25:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771291, 43.319244]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562540.3, "northing": 4796556.1, "time": "09:25:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770789, 43.31898]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562499.9, "northing": 4796526.4, "time": "09:25:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770329, 43.318674]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562462.9, "northing": 4796492.1, "time": "09:26:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769862, 43.318375]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562425.3, "northing": 4796458.5, "time": "09:26:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76936, 43.318113]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562384.9, "northing": 4796429.0, "time": "09:26:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768782, 43.317935]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562338.2, "northing": 4796408.8, "time": "09:27:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768206, 43.317751]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562291.7, "northing": 4796388.0, "time": "09:27:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767669, 43.317525]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562248.4, "northing": 4796362.5, "time": "09:27:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767187, 43.317245]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562209.6, "northing": 4796331.0, "time": "09:27:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766699, 43.316968]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562170.3, "northing": 4796299.9, "time": "09:28:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766215, 43.316686]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562131.3, "northing": 4796268.2, "time": "09:28:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765712, 43.316423]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562090.8, "northing": 4796238.7, "time": "09:28:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765216, 43.316158]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562050.9, "northing": 4796208.8, "time": "09:29:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764732, 43.315879]}, "properties": {"category": "real_shot", "line": "1091", "easting": 562011.9, "northing": 4796177.5, "time": "09:29:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764221, 43.315624]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561970.7, "northing": 4796148.8, "time": "09:29:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763705, 43.315379]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561929.1, "northing": 4796121.2, "time": "09:29:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763198, 43.315114]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561888.3, "northing": 4796091.4, "time": "09:30:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762704, 43.314853]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561848.5, "northing": 4796062.1, "time": "09:30:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762205, 43.314588]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561808.3, "northing": 4796032.3, "time": "09:30:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761713, 43.314315]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561768.7, "northing": 4796001.6, "time": "09:31:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761197, 43.314067]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561727.1, "northing": 4795973.7, "time": "09:31:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760658, 43.313848]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561683.6, "northing": 4795948.9, "time": "09:31:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76013, 43.313613]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561641.0, "northing": 4795922.5, "time": "09:31:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759616, 43.313364]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561599.6, "northing": 4795894.4, "time": "09:32:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759115, 43.313103]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561559.2, "northing": 4795865.1, "time": "09:32:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758608, 43.312845]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561518.4, "northing": 4795836.0, "time": "09:32:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758091, 43.3126]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561476.7, "northing": 4795808.5, "time": "09:33:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757554, 43.312376]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561433.4, "northing": 4795783.2, "time": "09:33:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757035, 43.312135]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561391.5, "northing": 4795756.0, "time": "09:33:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756562, 43.31184]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561353.5, "northing": 4795722.9, "time": "09:33:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756087, 43.31155]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561315.2, "northing": 4795690.4, "time": "09:34:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755608, 43.311264]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561276.7, "northing": 4795658.3, "time": "09:34:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755101, 43.311005]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561235.8, "northing": 4795629.1, "time": "09:34:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75458, 43.310769]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561193.8, "northing": 4795602.5, "time": "09:35:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75408, 43.310503]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561153.5, "northing": 4795572.6, "time": "09:35:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753558, 43.310264]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561111.4, "northing": 4795545.7, "time": "09:35:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753012, 43.310048]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561067.4, "northing": 4795521.3, "time": "09:35:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75249, 43.309809]}, "properties": {"category": "real_shot", "line": "1091", "easting": 561025.3, "northing": 4795494.4, "time": "09:36:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751978, 43.309559]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560984.0, "northing": 4795466.2, "time": "09:36:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751486, 43.309285]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560944.4, "northing": 4795435.5, "time": "09:36:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751006, 43.308999]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560905.7, "northing": 4795403.3, "time": "09:37:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750519, 43.308723]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560866.5, "northing": 4795372.3, "time": "09:37:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750011, 43.308467]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560825.6, "northing": 4795343.5, "time": "09:37:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749489, 43.308227]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560783.5, "northing": 4795316.5, "time": "09:37:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74896, 43.307996]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560740.8, "northing": 4795290.5, "time": "09:38:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748451, 43.30774]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560699.8, "northing": 4795261.7, "time": "09:38:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747946, 43.307481]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560659.1, "northing": 4795232.5, "time": "09:38:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747438, 43.307227]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560618.1, "northing": 4795204.0, "time": "09:39:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746922, 43.306982]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560576.5, "northing": 4795176.4, "time": "09:39:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746389, 43.306752]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560533.5, "northing": 4795150.5, "time": "09:39:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745864, 43.306515]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560491.2, "northing": 4795123.8, "time": "09:39:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745363, 43.306254]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560450.8, "northing": 4795094.4, "time": "09:40:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74487, 43.305983]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560411.1, "northing": 4795064.0, "time": "09:40:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.744376, 43.305712]}, "properties": {"category": "real_shot", "line": "1091", "easting": 560371.3, "northing": 4795033.5, "time": "09:40:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788872, 43.327585]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563957.1, "northing": 4797495.7, "time": "11:05:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788332, 43.327366]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563913.6, "northing": 4797471.0, "time": "11:05:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787811, 43.327125]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563871.6, "northing": 4797443.8, "time": "11:05:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787306, 43.326868]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563830.9, "northing": 4797414.9, "time": "11:05:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786843, 43.326565]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563793.7, "northing": 4797380.9, "time": "11:06:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786386, 43.326253]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563757.0, "northing": 4797345.9, "time": "11:06:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785903, 43.32597]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563718.1, "northing": 4797314.1, "time": "11:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78537, 43.325744]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563675.1, "northing": 4797288.6, "time": "11:07:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784841, 43.325512]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563632.5, "northing": 4797262.4, "time": "11:07:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784341, 43.325249]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563592.2, "northing": 4797232.8, "time": "11:07:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78385, 43.324975]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563552.7, "northing": 4797202.0, "time": "11:08:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783339, 43.324722]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563511.5, "northing": 4797173.6, "time": "11:08:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782818, 43.324482]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563469.5, "northing": 4797146.5, "time": "11:08:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782312, 43.324223]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563428.8, "northing": 4797117.4, "time": "11:08:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781798, 43.323974]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563387.4, "northing": 4797089.3, "time": "11:09:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781279, 43.323733]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563345.5, "northing": 4797062.1, "time": "11:09:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780783, 43.323464]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563305.6, "northing": 4797031.9, "time": "11:09:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780276, 43.323206]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563264.8, "northing": 4797002.9, "time": "11:10:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779752, 43.322969]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563222.5, "northing": 4796976.2, "time": "11:10:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779246, 43.322712]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563181.8, "northing": 4796947.2, "time": "11:10:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778753, 43.322441]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563142.1, "northing": 4796916.7, "time": "11:11:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778253, 43.322176]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563101.8, "northing": 4796887.0, "time": "11:11:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777753, 43.321914]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563061.5, "northing": 4796857.5, "time": "11:11:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77725, 43.321653]}, "properties": {"category": "real_shot", "line": "1093", "easting": 563021.0, "northing": 4796828.1, "time": "11:11:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776746, 43.321394]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562980.4, "northing": 4796799.0, "time": "11:12:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776238, 43.321138]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562939.5, "northing": 4796770.2, "time": "11:12:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77573, 43.320883]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562898.6, "northing": 4796741.4, "time": "11:12:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775222, 43.320628]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562857.6, "northing": 4796712.8, "time": "11:13:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77471, 43.320376]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562816.4, "northing": 4796684.4, "time": "11:13:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774194, 43.32013]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562774.8, "northing": 4796656.7, "time": "11:13:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773672, 43.319891]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562732.7, "northing": 4796629.7, "time": "11:13:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773171, 43.319628]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562692.4, "northing": 4796600.1, "time": "11:14:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772666, 43.319368]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562651.7, "northing": 4796570.9, "time": "11:14:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772146, 43.319127]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562609.8, "northing": 4796543.7, "time": "11:14:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771634, 43.318877]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562568.5, "northing": 4796515.6, "time": "11:15:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771131, 43.318614]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562528.0, "northing": 4796486.0, "time": "11:15:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770621, 43.318362]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562486.9, "northing": 4796457.6, "time": "11:15:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770106, 43.318116]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562445.4, "northing": 4796429.9, "time": "11:16:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769581, 43.317878]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562403.1, "northing": 4796403.1, "time": "11:16:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769078, 43.317619]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562362.5, "northing": 4796374.0, "time": "11:16:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768584, 43.317348]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562322.8, "northing": 4796343.5, "time": "11:16:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76809, 43.317077]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562283.0, "northing": 4796313.0, "time": "11:17:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767596, 43.316807]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562243.2, "northing": 4796282.7, "time": "11:17:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767097, 43.316541]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562203.0, "northing": 4796252.8, "time": "11:17:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766576, 43.316301]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562161.0, "northing": 4796225.7, "time": "11:18:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76604, 43.316076]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562117.8, "northing": 4796200.3, "time": "11:18:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765524, 43.315829]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562076.2, "northing": 4796172.5, "time": "11:18:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765014, 43.315575]}, "properties": {"category": "real_shot", "line": "1093", "easting": 562035.1, "northing": 4796144.0, "time": "11:19:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764505, 43.315322]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561994.1, "northing": 4796115.5, "time": "11:19:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763995, 43.315068]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561953.0, "northing": 4796086.9, "time": "11:19:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763494, 43.314807]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561912.6, "northing": 4796057.5, "time": "11:19:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76299, 43.314547]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561872.0, "northing": 4796028.3, "time": "11:20:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762489, 43.314286]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561831.6, "northing": 4795998.9, "time": "11:20:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761985, 43.314025]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561791.0, "northing": 4795969.6, "time": "11:20:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761482, 43.313765]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561750.5, "northing": 4795940.3, "time": "11:21:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760978, 43.313505]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561709.9, "northing": 4795911.1, "time": "11:21:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760474, 43.313247]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561669.3, "northing": 4795882.0, "time": "11:21:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759969, 43.312988]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561628.6, "northing": 4795852.9, "time": "11:21:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759468, 43.312726]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561588.2, "northing": 4795823.5, "time": "11:22:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758964, 43.312467]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561547.6, "northing": 4795794.3, "time": "11:22:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758464, 43.312204]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561507.3, "northing": 4795764.7, "time": "11:22:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757971, 43.311932]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561467.6, "northing": 4795734.2, "time": "11:23:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757472, 43.311666]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561427.4, "northing": 4795704.3, "time": "11:23:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756958, 43.311418]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561386.0, "northing": 4795676.3, "time": "11:23:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756432, 43.311182]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561343.6, "northing": 4795649.8, "time": "11:24:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755939, 43.31091]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561303.9, "northing": 4795619.2, "time": "11:24:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755433, 43.310652]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561263.1, "northing": 4795590.2, "time": "11:24:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754912, 43.310412]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561221.1, "northing": 4795563.1, "time": "11:24:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754402, 43.31016]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561180.0, "northing": 4795534.8, "time": "11:25:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753907, 43.309889]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561140.1, "northing": 4795504.3, "time": "11:25:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753402, 43.30963]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561099.4, "northing": 4795475.2, "time": "11:25:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752886, 43.309387]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561057.8, "northing": 4795447.8, "time": "11:26:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752381, 43.309128]}, "properties": {"category": "real_shot", "line": "1093", "easting": 561017.1, "northing": 4795418.7, "time": "11:26:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751884, 43.30886]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560977.1, "northing": 4795388.5, "time": "11:26:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751379, 43.308603]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560936.4, "northing": 4795359.6, "time": "11:27:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750867, 43.308351]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560895.1, "northing": 4795331.3, "time": "11:27:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750342, 43.308116]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560852.8, "northing": 4795304.8, "time": "11:27:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74984, 43.307855]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560812.3, "northing": 4795275.4, "time": "11:27:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749336, 43.307592]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560771.7, "northing": 4795245.9, "time": "11:28:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748824, 43.307343]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560730.4, "northing": 4795217.8, "time": "11:28:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748304, 43.3071]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560688.5, "northing": 4795190.5, "time": "11:28:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747785, 43.30686]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560646.6, "northing": 4795163.4, "time": "11:29:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74729, 43.306589]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560606.8, "northing": 4795133.0, "time": "11:29:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7468, 43.306314]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560567.3, "northing": 4795102.1, "time": "11:29:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74629, 43.306061]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560526.2, "northing": 4795073.6, "time": "11:29:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745761, 43.305829]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560483.5, "northing": 4795047.5, "time": "11:30:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74526, 43.305567]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560443.1, "northing": 4795018.0, "time": "11:30:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74474, 43.305324]}, "properties": {"category": "real_shot", "line": "1093", "easting": 560401.2, "northing": 4794990.7, "time": "11:30:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745083, 43.30496]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560429.4, "northing": 4794950.5, "time": "08:45:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745614, 43.305189]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560472.2, "northing": 4794976.3, "time": "08:45:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746118, 43.305452]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560512.8, "northing": 4795005.9, "time": "08:46:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746603, 43.305728]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560551.9, "northing": 4795036.9, "time": "08:46:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747091, 43.306005]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560591.2, "northing": 4795068.0, "time": "08:46:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747607, 43.30625]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560632.8, "northing": 4795095.6, "time": "08:47:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748125, 43.306495]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560674.6, "northing": 4795123.2, "time": "08:47:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748646, 43.306737]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560716.6, "northing": 4795150.4, "time": "08:47:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749177, 43.306967]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560759.4, "northing": 4795176.3, "time": "08:48:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749705, 43.307202]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560802.0, "northing": 4795202.8, "time": "08:48:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750199, 43.30747]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560841.8, "northing": 4795233.0, "time": "08:48:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750698, 43.307735]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560882.0, "northing": 4795262.8, "time": "08:48:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751199, 43.308001]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560922.4, "northing": 4795292.6, "time": "08:49:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751698, 43.308262]}, "properties": {"category": "real_shot", "line": "1095", "easting": 560962.6, "northing": 4795322.0, "time": "08:49:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752219, 43.308502]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561004.6, "northing": 4795349.0, "time": "08:49:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75273, 43.308753]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561045.8, "northing": 4795377.3, "time": "08:50:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75323, 43.309021]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561086.1, "northing": 4795407.4, "time": "08:50:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753733, 43.30928]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561126.6, "northing": 4795436.5, "time": "08:50:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754255, 43.30952]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561168.7, "northing": 4795463.6, "time": "08:51:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754761, 43.309774]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561209.5, "northing": 4795492.2, "time": "08:51:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755268, 43.310033]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561250.3, "northing": 4795521.3, "time": "08:51:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755771, 43.310294]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561290.9, "northing": 4795550.7, "time": "08:52:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756263, 43.310565]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561330.5, "northing": 4795581.1, "time": "08:52:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756751, 43.310844]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561369.8, "northing": 4795612.4, "time": "08:52:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757238, 43.311121]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561409.0, "northing": 4795643.6, "time": "08:53:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757736, 43.311385]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561449.1, "northing": 4795673.3, "time": "08:53:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758249, 43.311632]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561490.5, "northing": 4795701.1, "time": "08:53:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758759, 43.311889]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561531.6, "northing": 4795730.0, "time": "08:54:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75927, 43.31214]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561572.8, "northing": 4795758.2, "time": "08:54:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759789, 43.312383]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561614.6, "northing": 4795785.6, "time": "08:54:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76031, 43.312621]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561656.6, "northing": 4795812.4, "time": "08:55:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760845, 43.31285]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561699.8, "northing": 4795838.2, "time": "08:55:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761371, 43.313089]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561742.2, "northing": 4795865.2, "time": "08:55:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761865, 43.313354]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561782.0, "northing": 4795895.0, "time": "08:56:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762375, 43.313609]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561823.1, "northing": 4795923.7, "time": "08:56:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762886, 43.313858]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561864.3, "northing": 4795951.7, "time": "08:56:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763412, 43.314101]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561906.7, "northing": 4795979.1, "time": "08:57:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763932, 43.314341]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561948.6, "northing": 4796006.1, "time": "08:57:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764425, 43.314611]}, "properties": {"category": "real_shot", "line": "1095", "easting": 561988.3, "northing": 4796036.5, "time": "08:57:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764923, 43.314875]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562028.4, "northing": 4796066.2, "time": "08:58:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765434, 43.315127]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562069.6, "northing": 4796094.5, "time": "08:58:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765959, 43.315367]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562111.9, "northing": 4796121.6, "time": "08:58:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76644, 43.315648]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562150.6, "northing": 4796153.1, "time": "08:58:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766919, 43.315935]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562189.2, "northing": 4796185.4, "time": "08:59:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767418, 43.316199]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562229.4, "northing": 4796215.0, "time": "08:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767929, 43.316454]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562270.6, "northing": 4796243.7, "time": "08:59:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76842, 43.316724]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562310.1, "northing": 4796274.1, "time": "09:00:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76892, 43.316988]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562350.4, "northing": 4796303.8, "time": "09:00:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769427, 43.317245]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562391.2, "northing": 4796332.7, "time": "09:00:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769939, 43.317495]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562432.5, "northing": 4796360.8, "time": "09:01:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770459, 43.31774]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562474.4, "northing": 4796388.5, "time": "09:01:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770984, 43.317976]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562516.7, "northing": 4796415.0, "time": "09:01:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771513, 43.318209]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562559.4, "northing": 4796441.3, "time": "09:02:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772051, 43.318431]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562602.8, "northing": 4796466.4, "time": "09:02:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772554, 43.318692]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562643.3, "northing": 4796495.7, "time": "09:02:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773066, 43.318939]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562684.6, "northing": 4796523.6, "time": "09:03:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773589, 43.319182]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562726.7, "northing": 4796550.9, "time": "09:03:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774126, 43.319407]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562770.0, "northing": 4796576.3, "time": "09:03:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774639, 43.319658]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562811.4, "northing": 4796604.6, "time": "09:04:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775095, 43.319967]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562848.0, "northing": 4796639.3, "time": "09:04:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775559, 43.320268]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562885.3, "northing": 4796673.0, "time": "09:04:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776049, 43.320544]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562924.8, "northing": 4796704.0, "time": "09:05:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776562, 43.320793]}, "properties": {"category": "real_shot", "line": "1095", "easting": 562966.1, "northing": 4796732.1, "time": "09:05:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777105, 43.32101]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563009.9, "northing": 4796756.6, "time": "09:05:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777631, 43.321249]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563052.3, "northing": 4796783.5, "time": "09:06:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77814, 43.321502]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563093.3, "northing": 4796812.0, "time": "09:06:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778642, 43.321763]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563133.8, "northing": 4796841.4, "time": "09:06:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779127, 43.322044]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563172.8, "northing": 4796873.0, "time": "09:07:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779618, 43.322314]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563212.3, "northing": 4796903.3, "time": "09:07:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780145, 43.32255]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563254.8, "northing": 4796929.9, "time": "09:07:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780655, 43.3228]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563295.9, "northing": 4796958.1, "time": "09:08:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781166, 43.323058]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563337.1, "northing": 4796987.1, "time": "09:08:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78168, 43.323302]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563378.5, "northing": 4797014.6, "time": "09:08:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782199, 43.323547]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563420.3, "northing": 4797042.2, "time": "09:09:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782731, 43.32378]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563463.2, "northing": 4797068.5, "time": "09:09:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783224, 43.324049]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563502.9, "northing": 4797098.7, "time": "09:09:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783724, 43.32431]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563543.2, "northing": 4797128.1, "time": "09:10:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784234, 43.324561]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563584.3, "northing": 4797156.4, "time": "09:10:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784726, 43.324837]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563623.9, "northing": 4797187.4, "time": "09:10:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785204, 43.325126]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563662.3, "northing": 4797219.8, "time": "09:11:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785702, 43.325393]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563702.4, "northing": 4797249.9, "time": "09:11:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786237, 43.325609]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563745.6, "northing": 4797274.3, "time": "09:11:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786765, 43.325855]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563788.1, "northing": 4797302.0, "time": "09:12:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787291, 43.32609]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563830.5, "northing": 4797328.5, "time": "09:12:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787789, 43.32635]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563870.6, "northing": 4797357.7, "time": "09:12:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788301, 43.326609]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563911.9, "northing": 4797386.9, "time": "09:13:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788792, 43.326874]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563951.4, "northing": 4797416.7, "time": "09:13:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789284, 43.32715]}, "properties": {"category": "real_shot", "line": "1095", "easting": 563991.0, "northing": 4797447.7, "time": "09:13:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.745391, 43.304634]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560454.7, "northing": 4794914.5, "time": "11:33:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74585, 43.304943]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560491.6, "northing": 4794949.2, "time": "11:34:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746346, 43.305207]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560531.6, "northing": 4794978.8, "time": "11:34:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746878, 43.305436]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560574.5, "northing": 4795004.6, "time": "11:34:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747399, 43.305678]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560616.5, "northing": 4795031.9, "time": "11:35:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747921, 43.305918]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560658.6, "northing": 4795058.9, "time": "11:35:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748464, 43.306135]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560702.4, "northing": 4795083.4, "time": "11:35:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748987, 43.306375]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560744.6, "northing": 4795110.5, "time": "11:36:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749492, 43.306633]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560785.3, "northing": 4795139.5, "time": "11:36:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750002, 43.306886]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560826.4, "northing": 4795167.9, "time": "11:36:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750507, 43.307144]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560867.1, "northing": 4795197.0, "time": "11:36:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751013, 43.307401]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560907.9, "northing": 4795225.9, "time": "11:37:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751516, 43.307662]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560948.4, "northing": 4795255.2, "time": "11:37:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752016, 43.307924]}, "properties": {"category": "real_shot", "line": "1097", "easting": 560988.7, "northing": 4795284.7, "time": "11:37:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752515, 43.30819]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561028.9, "northing": 4795314.6, "time": "11:38:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753006, 43.308462]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561068.5, "northing": 4795345.2, "time": "11:38:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753509, 43.308723]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561109.0, "northing": 4795374.5, "time": "11:38:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754023, 43.308972]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561150.4, "northing": 4795402.5, "time": "11:39:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754515, 43.309244]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561190.1, "northing": 4795433.1, "time": "11:39:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755016, 43.309507]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561230.4, "northing": 4795462.7, "time": "11:39:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755537, 43.309748]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561272.4, "northing": 4795489.8, "time": "11:39:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756074, 43.30997]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561315.8, "northing": 4795514.9, "time": "11:40:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756571, 43.310239]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561355.8, "northing": 4795545.1, "time": "11:40:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757063, 43.310511]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561395.4, "northing": 4795575.7, "time": "11:40:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757569, 43.310768]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561436.2, "northing": 4795604.6, "time": "11:41:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758081, 43.311018]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561477.5, "northing": 4795632.8, "time": "11:41:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758607, 43.311254]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561519.9, "northing": 4795659.4, "time": "11:41:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759106, 43.31152]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561560.1, "northing": 4795689.2, "time": "11:42:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759611, 43.311778]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561600.8, "northing": 4795718.3, "time": "11:42:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760128, 43.312021]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561642.5, "northing": 4795745.7, "time": "11:42:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76064, 43.312276]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561683.7, "northing": 4795774.3, "time": "11:42:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761136, 43.312542]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561723.7, "northing": 4795804.3, "time": "11:43:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761643, 43.312799]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561764.5, "northing": 4795833.2, "time": "11:43:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762162, 43.313039]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561806.4, "northing": 4795860.2, "time": "11:43:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762673, 43.313292]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561847.6, "northing": 4795888.7, "time": "11:44:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763174, 43.313558]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561887.9, "northing": 4795918.6, "time": "11:44:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76368, 43.313815]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561928.7, "northing": 4795947.5, "time": "11:44:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764191, 43.314065]}, "properties": {"category": "real_shot", "line": "1097", "easting": 561969.9, "northing": 4795975.6, "time": "11:45:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764713, 43.314302]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562012.0, "northing": 4796002.4, "time": "11:45:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765225, 43.314558]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562053.2, "northing": 4796031.2, "time": "11:45:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765724, 43.314821]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562093.4, "northing": 4796060.8, "time": "11:45:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766226, 43.315082]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562133.9, "northing": 4796090.1, "time": "11:46:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76675, 43.315321]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562176.1, "northing": 4796117.0, "time": "11:46:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767249, 43.315587]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562216.3, "northing": 4796146.9, "time": "11:46:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767752, 43.315847]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562256.8, "northing": 4796176.2, "time": "11:47:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768273, 43.316088]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562298.8, "northing": 4796203.4, "time": "11:47:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768775, 43.316348]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562339.3, "northing": 4796232.6, "time": "11:47:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769279, 43.316609]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562379.9, "northing": 4796262.0, "time": "11:47:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769797, 43.316852]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562421.6, "northing": 4796289.3, "time": "11:48:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770312, 43.317102]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562463.1, "northing": 4796317.5, "time": "11:48:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770809, 43.317367]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562503.2, "northing": 4796347.3, "time": "11:48:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771316, 43.317624]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562544.0, "northing": 4796376.2, "time": "11:49:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771832, 43.317869]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562585.6, "northing": 4796403.8, "time": "11:49:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772354, 43.318109]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562627.7, "northing": 4796430.9, "time": "11:49:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772855, 43.318374]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562668.0, "northing": 4796460.6, "time": "11:50:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773362, 43.318629]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562708.9, "northing": 4796489.3, "time": "11:50:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773882, 43.318872]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562750.8, "northing": 4796516.7, "time": "11:50:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774401, 43.319114]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562792.6, "northing": 4796544.0, "time": "11:50:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774902, 43.319377]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562833.0, "northing": 4796573.6, "time": "11:51:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775412, 43.31963]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562874.1, "northing": 4796602.1, "time": "11:51:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775941, 43.319864]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562916.7, "northing": 4796628.4, "time": "11:51:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77645, 43.320119]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562957.7, "northing": 4796657.1, "time": "11:52:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77695, 43.320381]}, "properties": {"category": "real_shot", "line": "1097", "easting": 562998.0, "northing": 4796686.6, "time": "11:52:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777462, 43.320632]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563039.3, "northing": 4796714.9, "time": "11:52:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777985, 43.32087]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563081.4, "northing": 4796741.7, "time": "11:53:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778492, 43.321128]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563122.3, "northing": 4796770.7, "time": "11:53:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778993, 43.321391]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563162.6, "northing": 4796800.3, "time": "11:53:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779507, 43.321639]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563204.0, "northing": 4796828.3, "time": "11:53:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780029, 43.321879]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563246.1, "northing": 4796855.3, "time": "11:54:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78053, 43.322142]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563286.5, "northing": 4796884.9, "time": "11:54:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781026, 43.322412]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563326.4, "northing": 4796915.2, "time": "11:54:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781534, 43.322666]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563367.3, "northing": 4796943.8, "time": "11:55:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78205, 43.322911]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563408.9, "northing": 4796971.5, "time": "11:55:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782541, 43.323186]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563448.4, "northing": 4797002.4, "time": "11:55:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783045, 43.323444]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563489.0, "northing": 4797031.4, "time": "11:55:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783562, 43.323689]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563530.7, "northing": 4797059.0, "time": "11:56:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784065, 43.323949]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563571.2, "northing": 4797088.3, "time": "11:56:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784559, 43.324222]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563611.0, "northing": 4797118.9, "time": "11:56:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785067, 43.324476]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563651.9, "northing": 4797147.6, "time": "11:57:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785583, 43.324721]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563693.5, "northing": 4797175.2, "time": "11:57:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786078, 43.324993]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563733.3, "northing": 4797205.7, "time": "11:57:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786573, 43.32526]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563773.2, "northing": 4797235.8, "time": "11:57:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787096, 43.325499]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563815.3, "northing": 4797262.7, "time": "11:58:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787605, 43.325756]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563856.3, "northing": 4797291.6, "time": "11:58:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788114, 43.326009]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563897.3, "northing": 4797320.1, "time": "11:58:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788629, 43.326256]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563938.8, "northing": 4797348.0, "time": "11:59:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789155, 43.326491]}, "properties": {"category": "real_shot", "line": "1097", "easting": 563981.2, "northing": 4797374.4, "time": "11:59:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78967, 43.32674]}, "properties": {"category": "real_shot", "line": "1097", "easting": 564022.7, "northing": 4797402.5, "time": "11:59:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789992, 43.326377]}, "properties": {"category": "real_shot", "line": "1099", "easting": 564049.2, "northing": 4797362.4, "time": "08:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789506, 43.326114]}, "properties": {"category": "real_shot", "line": "1099", "easting": 564010.1, "northing": 4797332.9, "time": "08:18:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788978, 43.325884]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563967.5, "northing": 4797306.9, "time": "08:18:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788423, 43.325681]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563922.7, "northing": 4797283.9, "time": "08:19:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787892, 43.32545]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563879.9, "northing": 4797257.9, "time": "08:19:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787393, 43.325185]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563839.7, "northing": 4797228.1, "time": "08:19:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786898, 43.324916]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563799.9, "northing": 4797197.8, "time": "08:20:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786411, 43.324637]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563760.7, "northing": 4797166.4, "time": "08:20:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785909, 43.324375]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563720.3, "northing": 4797137.0, "time": "08:20:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785398, 43.324126]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563679.1, "northing": 4797108.9, "time": "08:20:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7849, 43.323858]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563639.0, "northing": 4797078.8, "time": "08:21:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784402, 43.323592]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563598.9, "northing": 4797048.9, "time": "08:21:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783897, 43.323336]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563558.2, "northing": 4797020.0, "time": "08:21:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783387, 43.323082]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563517.1, "northing": 4796991.4, "time": "08:22:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782869, 43.322836]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563475.4, "northing": 4796963.7, "time": "08:22:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78235, 43.322592]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563433.6, "northing": 4796936.3, "time": "08:22:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781852, 43.322327]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563393.5, "northing": 4796906.4, "time": "08:22:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781361, 43.322054]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563353.9, "northing": 4796875.8, "time": "08:23:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780861, 43.32179]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563313.7, "northing": 4796846.0, "time": "08:23:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78034, 43.321551]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563271.7, "northing": 4796819.1, "time": "08:23:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779842, 43.321284]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563231.6, "northing": 4796789.1, "time": "08:24:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779349, 43.321011]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563191.9, "northing": 4796758.4, "time": "08:24:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77885, 43.320747]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563151.7, "northing": 4796728.7, "time": "08:24:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778344, 43.320489]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563110.9, "northing": 4796699.7, "time": "08:24:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777835, 43.320237]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563069.9, "northing": 4796671.3, "time": "08:25:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777308, 43.320002]}, "properties": {"category": "real_shot", "line": "1099", "easting": 563027.4, "northing": 4796644.8, "time": "08:25:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776804, 43.319742]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562986.8, "northing": 4796615.5, "time": "08:25:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776307, 43.319475]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562946.8, "northing": 4796585.5, "time": "08:26:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7758, 43.319217]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562906.0, "northing": 4796556.5, "time": "08:26:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775284, 43.318972]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562864.4, "northing": 4796528.9, "time": "08:26:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774774, 43.318719]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562823.3, "northing": 4796500.4, "time": "08:26:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77428, 43.31845]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562783.5, "northing": 4796470.2, "time": "08:27:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77378, 43.318185]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562743.2, "northing": 4796440.3, "time": "08:27:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773262, 43.317941]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562701.5, "northing": 4796412.9, "time": "08:27:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772768, 43.317672]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562661.7, "northing": 4796382.6, "time": "08:28:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772268, 43.317408]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562621.4, "northing": 4796352.9, "time": "08:28:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771758, 43.317155]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562580.3, "northing": 4796324.5, "time": "08:28:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771234, 43.316916]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562538.1, "northing": 4796297.5, "time": "08:28:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770696, 43.316693]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562494.7, "northing": 4796272.3, "time": "08:29:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770173, 43.316454]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562452.5, "northing": 4796245.4, "time": "08:29:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769658, 43.316206]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562411.0, "northing": 4796217.5, "time": "08:29:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769139, 43.315962]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562369.2, "northing": 4796190.0, "time": "08:30:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768627, 43.315712]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562327.9, "northing": 4796161.9, "time": "08:30:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768114, 43.315461]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562286.6, "northing": 4796133.6, "time": "08:30:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767607, 43.315205]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562245.7, "northing": 4796104.8, "time": "08:30:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767103, 43.314946]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562205.1, "northing": 4796075.6, "time": "08:31:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766593, 43.314694]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562164.0, "northing": 4796047.3, "time": "08:31:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766063, 43.314461]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562121.3, "northing": 4796021.0, "time": "08:31:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765557, 43.314205]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562080.5, "northing": 4795992.2, "time": "08:32:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765062, 43.313937]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562040.6, "northing": 4795962.1, "time": "08:32:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76456, 43.313673]}, "properties": {"category": "real_shot", "line": "1099", "easting": 562000.2, "northing": 4795932.4, "time": "08:32:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764059, 43.313411]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561959.8, "northing": 4795902.9, "time": "08:32:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763557, 43.31315]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561919.4, "northing": 4795873.6, "time": "08:33:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763057, 43.312886]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561879.1, "northing": 4795843.9, "time": "08:33:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762552, 43.312627]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561838.4, "northing": 4795814.7, "time": "08:33:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762048, 43.312369]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561797.8, "northing": 4795785.7, "time": "08:34:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761546, 43.312108]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561757.4, "northing": 4795756.3, "time": "08:34:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76104, 43.31185]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561716.6, "northing": 4795727.3, "time": "08:34:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760534, 43.311593]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561675.8, "northing": 4795698.4, "time": "08:34:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760026, 43.311337]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561634.9, "northing": 4795669.6, "time": "08:35:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75952, 43.31108]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561594.1, "northing": 4795640.7, "time": "08:35:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759012, 43.310825]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561553.2, "northing": 4795612.0, "time": "08:35:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758501, 43.310573]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561512.0, "northing": 4795583.6, "time": "08:36:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757992, 43.310318]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561471.0, "northing": 4795555.0, "time": "08:36:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757484, 43.310065]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561430.0, "northing": 4795526.5, "time": "08:36:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756974, 43.309811]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561388.9, "northing": 4795497.9, "time": "08:36:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756461, 43.309561]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561347.6, "northing": 4795469.7, "time": "08:37:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755945, 43.309315]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561306.0, "northing": 4795442.1, "time": "08:37:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755431, 43.309068]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561264.5, "northing": 4795414.2, "time": "08:37:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754911, 43.308826]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561222.6, "northing": 4795387.0, "time": "08:37:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754405, 43.308566]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561181.8, "northing": 4795357.7, "time": "08:38:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753907, 43.3083]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561141.7, "northing": 4795327.8, "time": "08:38:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753403, 43.30804]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561101.1, "northing": 4795298.6, "time": "08:38:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752887, 43.307796]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561059.5, "northing": 4795271.1, "time": "08:39:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752389, 43.30753]}, "properties": {"category": "real_shot", "line": "1099", "easting": 561019.4, "northing": 4795241.2, "time": "08:39:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751884, 43.30727]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560978.7, "northing": 4795212.0, "time": "08:39:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751375, 43.307019]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560937.6, "northing": 4795183.7, "time": "08:39:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750877, 43.30675]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560897.5, "northing": 4795153.5, "time": "08:40:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750369, 43.306495]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560856.6, "northing": 4795124.8, "time": "08:40:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749853, 43.30625]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560815.0, "northing": 4795097.2, "time": "08:40:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749353, 43.305986]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560774.7, "northing": 4795067.5, "time": "08:41:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74886, 43.305713]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560735.0, "northing": 4795036.9, "time": "08:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748355, 43.305457]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560694.3, "northing": 4795008.1, "time": "08:41:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747843, 43.305207]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560653.0, "northing": 4794979.9, "time": "08:41:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747321, 43.304966]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560610.9, "northing": 4794952.8, "time": "08:42:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746823, 43.304699]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560570.8, "northing": 4794922.8, "time": "08:42:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746326, 43.304433]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560530.7, "northing": 4794892.9, "time": "08:42:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74582, 43.304176]}, "properties": {"category": "real_shot", "line": "1099", "easting": 560489.9, "northing": 4794864.0, "time": "08:43:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790342, 43.326017]}, "properties": {"category": "real_shot", "line": "1101", "easting": 564078.0, "northing": 4797322.7, "time": "12:02:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789806, 43.325798]}, "properties": {"category": "real_shot", "line": "1101", "easting": 564034.7, "northing": 4797298.0, "time": "12:02:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789293, 43.32555]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563993.4, "northing": 4797270.0, "time": "12:02:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788801, 43.325277]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563953.8, "northing": 4797239.3, "time": "12:03:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788302, 43.325012]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563913.6, "northing": 4797209.5, "time": "12:03:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787786, 43.324767]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563872.0, "northing": 4797181.9, "time": "12:03:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787283, 43.324507]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563831.5, "northing": 4797152.7, "time": "12:04:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786792, 43.324232]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563792.0, "northing": 4797121.8, "time": "12:04:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786294, 43.323966]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563751.9, "northing": 4797091.8, "time": "12:04:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785786, 43.323709]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563711.0, "northing": 4797062.9, "time": "12:05:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785281, 43.323453]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563670.3, "northing": 4797034.1, "time": "12:05:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784771, 43.3232]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563629.2, "northing": 4797005.6, "time": "12:05:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784257, 43.322949]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563587.8, "northing": 4796977.4, "time": "12:05:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783739, 43.322705]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563546.1, "northing": 4796949.9, "time": "12:06:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783221, 43.322463]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563504.3, "northing": 4796922.6, "time": "12:06:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782724, 43.322195]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563464.3, "northing": 4796892.4, "time": "12:06:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782224, 43.32193]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563424.0, "northing": 4796862.6, "time": "12:07:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781705, 43.321687]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563382.2, "northing": 4796835.3, "time": "12:07:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781205, 43.321424]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563341.9, "northing": 4796805.7, "time": "12:07:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780705, 43.321158]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563301.7, "northing": 4796775.7, "time": "12:08:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780196, 43.320904]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563260.7, "northing": 4796747.2, "time": "12:08:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779678, 43.320662]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563218.9, "northing": 4796719.9, "time": "12:08:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779181, 43.320394]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563178.9, "northing": 4796689.8, "time": "12:08:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778677, 43.320133]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563138.3, "northing": 4796660.4, "time": "12:09:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778161, 43.319888]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563096.7, "northing": 4796632.8, "time": "12:09:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777671, 43.319614]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563057.3, "northing": 4796602.0, "time": "12:09:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777163, 43.319358]}, "properties": {"category": "real_shot", "line": "1101", "easting": 563016.3, "northing": 4796573.2, "time": "12:10:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776646, 43.319112]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562974.7, "northing": 4796545.5, "time": "12:10:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776151, 43.318844]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562934.8, "northing": 4796515.3, "time": "12:10:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775642, 43.31859]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562893.8, "northing": 4796486.7, "time": "12:11:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77512, 43.318351]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562851.7, "northing": 4796459.8, "time": "12:11:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774612, 43.318094]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562810.8, "northing": 4796430.9, "time": "12:11:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774096, 43.317847]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562769.2, "northing": 4796403.1, "time": "12:11:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773569, 43.317613]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562726.7, "northing": 4796376.7, "time": "12:12:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773055, 43.317365]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562685.3, "northing": 4796348.7, "time": "12:12:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77255, 43.317106]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562644.6, "northing": 4796319.6, "time": "12:12:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772039, 43.316854]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562603.4, "northing": 4796291.2, "time": "12:13:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771515, 43.316615]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562561.2, "northing": 4796264.3, "time": "12:13:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771005, 43.316364]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562520.1, "northing": 4796236.0, "time": "12:13:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770509, 43.316095]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562480.1, "northing": 4796205.8, "time": "12:14:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770006, 43.315835]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562439.6, "northing": 4796176.5, "time": "12:14:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769493, 43.315583]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562398.3, "northing": 4796148.2, "time": "12:14:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768974, 43.315342]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562356.4, "northing": 4796121.0, "time": "12:14:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768473, 43.315079]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562316.1, "northing": 4796091.4, "time": "12:15:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767975, 43.31481]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562276.0, "northing": 4796061.2, "time": "12:15:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767475, 43.314549]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562235.7, "northing": 4796031.8, "time": "12:15:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766968, 43.314293]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562194.8, "northing": 4796003.0, "time": "12:16:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76646, 43.314038]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562153.9, "northing": 4795974.3, "time": "12:16:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765949, 43.313786]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562112.7, "northing": 4795946.0, "time": "12:16:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765434, 43.313538]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562071.2, "northing": 4795918.1, "time": "12:17:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764918, 43.313293]}, "properties": {"category": "real_shot", "line": "1101", "easting": 562029.6, "northing": 4795890.4, "time": "12:17:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764421, 43.313024]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561989.6, "northing": 4795860.2, "time": "12:17:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763918, 43.312763]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561949.1, "northing": 4795830.9, "time": "12:17:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763396, 43.312524]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561907.0, "northing": 4795803.9, "time": "12:18:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762891, 43.312266]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561866.3, "northing": 4795774.9, "time": "12:18:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762396, 43.311997]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561826.4, "northing": 4795744.7, "time": "12:18:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761885, 43.311745]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561785.2, "northing": 4795716.3, "time": "12:19:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761369, 43.3115]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561743.6, "northing": 4795688.7, "time": "12:19:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760871, 43.311231]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561703.5, "northing": 4795658.5, "time": "12:19:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760363, 43.310976]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561662.6, "northing": 4795629.8, "time": "12:20:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759851, 43.310728]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561621.3, "northing": 4795601.8, "time": "12:20:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759353, 43.31046]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561581.2, "northing": 4795571.7, "time": "12:20:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758844, 43.310206]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561540.2, "northing": 4795543.1, "time": "12:21:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758327, 43.309961]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561498.5, "northing": 4795515.5, "time": "12:21:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757829, 43.309695]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561458.4, "northing": 4795485.6, "time": "12:21:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757316, 43.309446]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561417.0, "northing": 4795457.6, "time": "12:21:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756808, 43.309191]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561376.1, "northing": 4795428.9, "time": "12:22:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756307, 43.308927]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561335.7, "northing": 4795399.2, "time": "12:22:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755787, 43.308686]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561293.8, "northing": 4795372.1, "time": "12:22:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755285, 43.308426]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561253.3, "northing": 4795342.8, "time": "12:23:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754786, 43.308159]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561213.1, "northing": 4795312.8, "time": "12:23:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754273, 43.307909]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561171.8, "northing": 4795284.7, "time": "12:23:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753761, 43.307659]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561130.5, "northing": 4795256.6, "time": "12:24:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753261, 43.307395]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561090.2, "northing": 4795226.9, "time": "12:24:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752753, 43.307139]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561049.3, "northing": 4795198.1, "time": "12:24:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752236, 43.306894]}, "properties": {"category": "real_shot", "line": "1101", "easting": 561007.6, "northing": 4795170.5, "time": "12:24:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751714, 43.306655]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560965.5, "northing": 4795143.6, "time": "12:25:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751215, 43.30639]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560925.3, "northing": 4795113.8, "time": "12:25:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750717, 43.306124]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560885.2, "northing": 4795083.8, "time": "12:25:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750205, 43.305873]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560843.9, "northing": 4795055.6, "time": "12:26:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749688, 43.305629]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560802.2, "northing": 4795028.1, "time": "12:26:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749174, 43.30538]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560760.8, "northing": 4795000.1, "time": "12:26:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748679, 43.30511]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560720.9, "northing": 4794969.8, "time": "12:27:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748175, 43.304851]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560680.3, "northing": 4794940.6, "time": "12:27:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747653, 43.304611]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560638.2, "northing": 4794913.6, "time": "12:27:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747145, 43.304357]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560597.2, "northing": 4794885.0, "time": "12:27:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746651, 43.304085]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560557.4, "northing": 4794854.5, "time": "12:28:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746136, 43.303838]}, "properties": {"category": "real_shot", "line": "1101", "easting": 560515.9, "northing": 4794826.7, "time": "12:28:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746445, 43.303514]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560541.3, "northing": 4794790.9, "time": "07:48:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.746998, 43.30372]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560585.9, "northing": 4794814.2, "time": "07:48:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747489, 43.303993]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560625.5, "northing": 4794844.8, "time": "07:48:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747988, 43.304256]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560665.7, "northing": 4794874.4, "time": "07:49:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748499, 43.304506]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560706.9, "northing": 4794902.6, "time": "07:49:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748987, 43.304783]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560746.2, "northing": 4794933.7, "time": "07:49:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749512, 43.30502]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560788.5, "northing": 4794960.4, "time": "07:50:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750021, 43.305274]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560829.6, "northing": 4794988.9, "time": "07:50:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750524, 43.305537]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560870.1, "northing": 4795018.5, "time": "07:50:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751038, 43.305783]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560911.5, "northing": 4795046.2, "time": "07:51:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751561, 43.306024]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560953.7, "northing": 4795073.4, "time": "07:51:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752093, 43.306252]}, "properties": {"category": "real_shot", "line": "1103", "easting": 560996.6, "northing": 4795099.1, "time": "07:51:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752596, 43.306511]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561037.2, "northing": 4795128.2, "time": "07:52:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753099, 43.306776]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561077.7, "northing": 4795158.0, "time": "07:52:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753609, 43.307027]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561118.8, "northing": 4795186.2, "time": "07:52:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754124, 43.307274]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561160.3, "northing": 4795214.0, "time": "07:53:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754646, 43.307514]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561202.4, "northing": 4795241.1, "time": "07:53:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755182, 43.307738]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561245.7, "northing": 4795266.4, "time": "07:53:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755686, 43.307995]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561286.3, "northing": 4795295.3, "time": "07:54:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756193, 43.308257]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561327.1, "northing": 4795324.7, "time": "07:54:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756694, 43.30852]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561367.5, "northing": 4795354.3, "time": "07:54:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757194, 43.308782]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561407.8, "northing": 4795383.8, "time": "07:55:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757694, 43.309045]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561448.1, "northing": 4795413.3, "time": "07:55:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758202, 43.3093]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561489.0, "northing": 4795442.1, "time": "07:55:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758714, 43.30955]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561530.3, "northing": 4795470.2, "time": "07:56:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759229, 43.309798]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561571.8, "northing": 4795498.1, "time": "07:56:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759749, 43.310042]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561613.7, "northing": 4795525.6, "time": "07:56:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76024, 43.310312]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561653.3, "northing": 4795555.9, "time": "07:57:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760725, 43.310594]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561692.3, "northing": 4795587.6, "time": "07:57:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761216, 43.310865]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561731.9, "northing": 4795618.1, "time": "07:57:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761718, 43.311127]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561772.3, "northing": 4795647.5, "time": "07:58:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762236, 43.311371]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561814.1, "northing": 4795675.0, "time": "07:58:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762744, 43.311628]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561855.0, "northing": 4795703.9, "time": "07:58:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763239, 43.311897]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561894.9, "northing": 4795734.2, "time": "07:58:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763738, 43.31216]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561935.1, "northing": 4795763.8, "time": "07:59:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764247, 43.312415]}, "properties": {"category": "real_shot", "line": "1103", "easting": 561976.1, "northing": 4795792.4, "time": "07:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764756, 43.312668]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562017.1, "northing": 4795820.9, "time": "07:59:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765272, 43.312913]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562058.7, "northing": 4795848.5, "time": "08:00:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765795, 43.313156]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562100.9, "northing": 4795875.9, "time": "08:00:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766322, 43.313387]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562143.4, "northing": 4795901.9, "time": "08:00:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766862, 43.313615]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562186.9, "northing": 4795927.7, "time": "08:01:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76737, 43.313867]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562227.9, "northing": 4795956.0, "time": "08:01:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767888, 43.314112]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562269.6, "northing": 4795983.6, "time": "08:01:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768423, 43.314336]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562312.8, "northing": 4796008.9, "time": "08:02:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768938, 43.314585]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562354.3, "northing": 4796036.9, "time": "08:02:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76941, 43.314875]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562392.3, "northing": 4796069.5, "time": "08:02:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769885, 43.315169]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562430.5, "northing": 4796102.5, "time": "08:03:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770371, 43.315448]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562469.6, "northing": 4796133.8, "time": "08:03:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770863, 43.315717]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562509.2, "northing": 4796164.1, "time": "08:03:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771361, 43.315984]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562549.3, "northing": 4796194.1, "time": "08:04:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771871, 43.31624]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562590.4, "northing": 4796222.9, "time": "08:04:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772387, 43.316483]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562632.0, "northing": 4796250.3, "time": "08:04:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772905, 43.316725]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562673.8, "northing": 4796277.6, "time": "08:05:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773407, 43.316992]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562714.2, "northing": 4796307.6, "time": "08:05:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773933, 43.317229]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562756.6, "northing": 4796334.3, "time": "08:05:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77444, 43.317482]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562797.5, "northing": 4796362.8, "time": "08:06:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774947, 43.317738]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562838.3, "northing": 4796391.6, "time": "08:06:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77546, 43.317989]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562879.7, "northing": 4796419.9, "time": "08:06:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775971, 43.318241]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562920.8, "northing": 4796448.2, "time": "08:07:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776484, 43.318491]}, "properties": {"category": "real_shot", "line": "1103", "easting": 562962.2, "northing": 4796476.4, "time": "08:07:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777007, 43.318729]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563004.3, "northing": 4796503.2, "time": "08:07:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777508, 43.318993]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563044.7, "northing": 4796532.9, "time": "08:08:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777994, 43.319272]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563083.8, "northing": 4796564.2, "time": "08:08:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77848, 43.319549]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563122.9, "northing": 4796595.4, "time": "08:08:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778987, 43.319807]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563163.8, "northing": 4796624.4, "time": "08:09:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779521, 43.320031]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563206.8, "northing": 4796649.7, "time": "08:09:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780027, 43.32029]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563247.6, "northing": 4796678.8, "time": "08:09:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780529, 43.320552]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563288.0, "northing": 4796708.3, "time": "08:10:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781059, 43.320781]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563330.8, "northing": 4796734.2, "time": "08:10:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781582, 43.321023]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563372.9, "northing": 4796761.4, "time": "08:10:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782093, 43.321276]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563414.1, "northing": 4796789.9, "time": "08:10:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782594, 43.321541]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563454.4, "northing": 4796819.7, "time": "08:11:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783074, 43.321821]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563493.1, "northing": 4796851.2, "time": "08:11:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783555, 43.322106]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563531.8, "northing": 4796883.2, "time": "08:11:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784074, 43.322348]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563573.6, "northing": 4796910.5, "time": "08:12:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784602, 43.322582]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563616.2, "northing": 4796936.9, "time": "08:12:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785117, 43.322833]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563657.7, "northing": 4796965.1, "time": "08:12:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785611, 43.323098]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563697.4, "northing": 4796994.9, "time": "08:13:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786107, 43.323372]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563737.4, "northing": 4797025.7, "time": "08:13:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786624, 43.323617]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563779.0, "northing": 4797053.3, "time": "08:13:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787162, 43.32384]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563822.4, "northing": 4797078.5, "time": "08:14:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787674, 43.324088]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563863.7, "northing": 4797106.4, "time": "08:14:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788182, 43.324344]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563904.6, "northing": 4797135.3, "time": "08:14:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788681, 43.324607]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563944.8, "northing": 4797164.9, "time": "08:15:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789176, 43.32488]}, "properties": {"category": "real_shot", "line": "1103", "easting": 563984.6, "northing": 4797195.6, "time": "08:15:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789659, 43.325163]}, "properties": {"category": "real_shot", "line": "1103", "easting": 564023.5, "northing": 4797227.3, "time": "08:15:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790163, 43.325421]}, "properties": {"category": "real_shot", "line": "1103", "easting": 564064.1, "northing": 4797256.4, "time": "08:16:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790703, 43.325641]}, "properties": {"category": "real_shot", "line": "1103", "easting": 564107.6, "northing": 4797281.2, "time": "08:16:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74682, 43.303119]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560572.1, "northing": 4794747.3, "time": "12:30:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747329, 43.30337]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560613.1, "northing": 4794775.5, "time": "12:31:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747857, 43.303599]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560655.7, "northing": 4794801.4, "time": "12:31:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748382, 43.303836]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560698.1, "northing": 4794828.1, "time": "12:31:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748874, 43.30411]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560737.7, "northing": 4794858.8, "time": "12:32:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749357, 43.304391]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560776.6, "northing": 4794890.4, "time": "12:32:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74986, 43.304652]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560817.1, "northing": 4794919.7, "time": "12:32:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750384, 43.304888]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560859.4, "northing": 4794946.4, "time": "12:32:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750889, 43.305147]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560900.1, "northing": 4794975.5, "time": "12:33:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751397, 43.305402]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560941.0, "northing": 4795004.2, "time": "12:33:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751903, 43.30566]}, "properties": {"category": "real_shot", "line": "1105", "easting": 560981.8, "northing": 4795033.2, "time": "12:33:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752424, 43.305901]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561023.8, "northing": 4795060.3, "time": "12:34:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752949, 43.306137]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561066.2, "northing": 4795086.9, "time": "12:34:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753456, 43.306395]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561107.0, "northing": 4795116.0, "time": "12:34:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753963, 43.30665]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561147.9, "northing": 4795144.6, "time": "12:34:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75449, 43.306882]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561190.4, "northing": 4795170.8, "time": "12:35:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755006, 43.307132]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561232.0, "northing": 4795198.9, "time": "12:35:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755512, 43.30739]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561272.8, "northing": 4795227.9, "time": "12:35:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756027, 43.307636]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561314.3, "northing": 4795255.6, "time": "12:36:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756552, 43.307873]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561356.6, "northing": 4795282.4, "time": "12:36:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757052, 43.308138]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561396.9, "northing": 4795312.2, "time": "12:36:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757553, 43.308399]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561437.3, "northing": 4795341.5, "time": "12:37:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758075, 43.308638]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561479.4, "northing": 4795368.4, "time": "12:37:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758574, 43.308904]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561519.6, "northing": 4795398.3, "time": "12:37:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75906, 43.309182]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561558.7, "northing": 4795429.6, "time": "12:37:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759545, 43.309461]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561597.8, "northing": 4795460.9, "time": "12:38:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760031, 43.30974]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561636.9, "northing": 4795492.3, "time": "12:38:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760524, 43.310011]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561676.6, "northing": 4795522.7, "time": "12:38:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761027, 43.310273]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561717.1, "northing": 4795552.2, "time": "12:39:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761543, 43.310517]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561758.7, "northing": 4795579.7, "time": "12:39:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762045, 43.310779]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561799.2, "northing": 4795609.1, "time": "12:39:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762539, 43.311051]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561839.0, "northing": 4795639.7, "time": "12:39:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763049, 43.311302]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561880.1, "northing": 4795668.0, "time": "12:40:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763576, 43.311536]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561922.6, "northing": 4795694.3, "time": "12:40:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764089, 43.311787]}, "properties": {"category": "real_shot", "line": "1105", "easting": 561963.9, "northing": 4795722.6, "time": "12:40:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764594, 43.312047]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562004.6, "northing": 4795751.8, "time": "12:41:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76511, 43.312294]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562046.2, "northing": 4795779.6, "time": "12:41:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765638, 43.312526]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562088.8, "northing": 4795805.8, "time": "12:41:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766151, 43.312777]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562130.1, "northing": 4795834.1, "time": "12:41:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766651, 43.31304]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562170.4, "northing": 4795863.6, "time": "12:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767167, 43.313287]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562212.0, "northing": 4795891.5, "time": "12:42:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767684, 43.313531]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562253.7, "northing": 4795918.9, "time": "12:42:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768187, 43.313792]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562294.2, "northing": 4795948.3, "time": "12:43:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768701, 43.314042]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562335.6, "northing": 4795976.4, "time": "12:43:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769225, 43.314278]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562377.9, "northing": 4796003.0, "time": "12:43:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769734, 43.314533]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562418.9, "northing": 4796031.8, "time": "12:43:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770234, 43.314797]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562459.2, "northing": 4796061.4, "time": "12:44:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770733, 43.315062]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562499.4, "northing": 4796091.2, "time": "12:44:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771239, 43.315319]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562540.1, "northing": 4796120.2, "time": "12:44:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771752, 43.315568]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562581.5, "northing": 4796148.2, "time": "12:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77227, 43.315812]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562623.2, "northing": 4796175.7, "time": "12:45:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772772, 43.316074]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562663.7, "northing": 4796205.2, "time": "12:45:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773272, 43.31634]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562703.9, "northing": 4796235.1, "time": "12:46:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773788, 43.316584]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562745.5, "northing": 4796262.6, "time": "12:46:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774295, 43.316841]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562786.4, "northing": 4796291.5, "time": "12:46:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774793, 43.317107]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562826.5, "northing": 4796321.4, "time": "12:46:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775295, 43.317368]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562866.9, "northing": 4796350.8, "time": "12:47:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775805, 43.317622]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562908.0, "northing": 4796379.3, "time": "12:47:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776327, 43.317862]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562950.1, "northing": 4796406.4, "time": "12:47:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776829, 43.318124]}, "properties": {"category": "real_shot", "line": "1105", "easting": 562990.5, "northing": 4796435.9, "time": "12:48:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777328, 43.318389]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563030.7, "northing": 4796465.7, "time": "12:48:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777844, 43.318634]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563072.3, "northing": 4796493.3, "time": "12:48:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778352, 43.318891]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563113.2, "northing": 4796522.2, "time": "12:48:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77885, 43.319158]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563153.3, "northing": 4796552.2, "time": "12:49:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779355, 43.319414]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563194.0, "northing": 4796581.1, "time": "12:49:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779872, 43.319659]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563235.7, "northing": 4796608.6, "time": "12:49:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780369, 43.319927]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563275.7, "northing": 4796638.8, "time": "12:50:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780869, 43.32019]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563316.0, "northing": 4796668.4, "time": "12:50:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781387, 43.320435]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563357.7, "northing": 4796696.0, "time": "12:50:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781909, 43.320674]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563399.8, "northing": 4796722.9, "time": "12:50:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782434, 43.320913]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563442.1, "northing": 4796749.9, "time": "12:51:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782937, 43.321174]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563482.6, "northing": 4796779.2, "time": "12:51:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783447, 43.321426]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563523.7, "northing": 4796807.6, "time": "12:51:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78397, 43.321666]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563565.9, "northing": 4796834.6, "time": "12:52:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784472, 43.321928]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563606.3, "northing": 4796864.1, "time": "12:52:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784966, 43.322197]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563646.1, "northing": 4796894.4, "time": "12:52:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785459, 43.322469]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563685.8, "northing": 4796925.0, "time": "12:52:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785966, 43.322723]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563726.6, "northing": 4796953.6, "time": "12:53:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786466, 43.322988]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563766.9, "northing": 4796983.4, "time": "12:53:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786956, 43.323263]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563806.3, "northing": 4797014.3, "time": "12:53:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78746, 43.323522]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563846.9, "northing": 4797043.4, "time": "12:54:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787981, 43.323762]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563888.9, "northing": 4797070.5, "time": "12:54:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788485, 43.324024]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563929.5, "northing": 4797100.0, "time": "12:54:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788984, 43.324287]}, "properties": {"category": "real_shot", "line": "1105", "easting": 563969.7, "northing": 4797129.6, "time": "12:55:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789498, 43.324536]}, "properties": {"category": "real_shot", "line": "1105", "easting": 564011.1, "northing": 4797157.6, "time": "12:55:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790025, 43.32477]}, "properties": {"category": "real_shot", "line": "1105", "easting": 564053.6, "northing": 4797184.0, "time": "12:55:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790537, 43.325023]}, "properties": {"category": "real_shot", "line": "1105", "easting": 564094.8, "northing": 4797212.5, "time": "12:55:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791046, 43.325278]}, "properties": {"category": "real_shot", "line": "1105", "easting": 564135.8, "northing": 4797241.2, "time": "12:56:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791454, 43.324833]}, "properties": {"category": "real_shot", "line": "1107", "easting": 564169.4, "northing": 4797192.1, "time": "07:21:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790948, 43.324582]}, "properties": {"category": "real_shot", "line": "1107", "easting": 564128.6, "northing": 4797163.8, "time": "07:21:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790389, 43.324384]}, "properties": {"category": "real_shot", "line": "1107", "easting": 564083.5, "northing": 4797141.4, "time": "07:21:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789838, 43.324174]}, "properties": {"category": "real_shot", "line": "1107", "easting": 564039.0, "northing": 4797117.7, "time": "07:22:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789323, 43.323927]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563997.5, "northing": 4797089.8, "time": "07:22:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788811, 43.323675]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563956.3, "northing": 4797061.4, "time": "07:22:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788313, 43.323411]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563916.2, "northing": 4797031.8, "time": "07:22:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787808, 43.323151]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563875.5, "northing": 4797002.5, "time": "07:23:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787294, 43.322902]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563834.1, "northing": 4796974.5, "time": "07:23:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786766, 43.322668]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563791.5, "northing": 4796948.1, "time": "07:23:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786254, 43.322418]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563750.3, "northing": 4796919.9, "time": "07:24:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78577, 43.322138]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563711.3, "northing": 4796888.4, "time": "07:24:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785284, 43.321856]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563672.2, "northing": 4796856.8, "time": "07:24:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784793, 43.321585]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563632.7, "northing": 4796826.3, "time": "07:24:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784291, 43.321322]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563592.3, "northing": 4796796.7, "time": "07:25:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783783, 43.321069]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563551.3, "northing": 4796768.2, "time": "07:25:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783266, 43.320821]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563509.7, "northing": 4796740.3, "time": "07:25:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782761, 43.320565]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563469.0, "northing": 4796711.4, "time": "07:26:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782267, 43.320293]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563429.2, "northing": 4796680.9, "time": "07:26:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781758, 43.320039]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563388.2, "northing": 4796652.3, "time": "07:26:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781243, 43.319792]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563346.7, "northing": 4796624.5, "time": "07:26:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780712, 43.319562]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563303.9, "northing": 4796598.5, "time": "07:27:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780208, 43.319303]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563263.3, "northing": 4796569.4, "time": "07:27:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779703, 43.319043]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563222.6, "northing": 4796540.1, "time": "07:27:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779189, 43.318793]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563181.2, "northing": 4796512.0, "time": "07:28:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778673, 43.318549]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563139.6, "northing": 4796484.5, "time": "07:28:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778138, 43.318323]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563096.5, "northing": 4796459.0, "time": "07:28:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777623, 43.318074]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563055.0, "northing": 4796430.9, "time": "07:28:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777118, 43.317814]}, "properties": {"category": "real_shot", "line": "1107", "easting": 563014.3, "northing": 4796401.7, "time": "07:29:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776618, 43.317552]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562974.0, "northing": 4796372.2, "time": "07:29:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776122, 43.317283]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562934.1, "northing": 4796341.9, "time": "07:29:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775621, 43.31702]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562893.7, "northing": 4796312.4, "time": "07:30:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775094, 43.316787]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562851.2, "northing": 4796286.1, "time": "07:30:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774589, 43.31653]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562810.5, "northing": 4796257.2, "time": "07:30:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774104, 43.316249]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562771.5, "northing": 4796225.6, "time": "07:30:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773612, 43.315975]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562731.9, "northing": 4796194.8, "time": "07:31:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773106, 43.315719]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562691.1, "northing": 4796166.0, "time": "07:31:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772585, 43.315479]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562649.1, "northing": 4796138.9, "time": "07:31:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772088, 43.31521]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562609.1, "northing": 4796108.7, "time": "07:32:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771598, 43.314938]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562569.6, "northing": 4796078.1, "time": "07:32:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771106, 43.314665]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562530.0, "northing": 4796047.4, "time": "07:32:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770598, 43.314409]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562489.1, "northing": 4796018.6, "time": "07:32:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770063, 43.314184]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562445.9, "northing": 4795993.2, "time": "07:33:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769555, 43.313928]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562405.0, "northing": 4795964.4, "time": "07:33:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769052, 43.313666]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562364.5, "northing": 4795935.0, "time": "07:33:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768525, 43.313431]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562322.0, "northing": 4795908.5, "time": "07:34:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767992, 43.313203]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562279.0, "northing": 4795882.7, "time": "07:34:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767477, 43.312957]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562237.5, "northing": 4795855.0, "time": "07:34:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766947, 43.312725]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562194.7, "northing": 4795828.9, "time": "07:34:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766433, 43.312476]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562153.3, "northing": 4795800.8, "time": "07:35:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765927, 43.312219]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562112.5, "northing": 4795771.9, "time": "07:35:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765429, 43.311953]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562072.4, "northing": 4795742.0, "time": "07:35:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764935, 43.311684]}, "properties": {"category": "real_shot", "line": "1107", "easting": 562032.6, "northing": 4795711.8, "time": "07:35:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764447, 43.311406]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561993.3, "northing": 4795680.5, "time": "07:36:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763952, 43.311137]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561953.5, "northing": 4795650.3, "time": "07:36:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763433, 43.310894]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561911.6, "northing": 4795622.9, "time": "07:36:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762929, 43.310635]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561871.0, "northing": 4795593.8, "time": "07:37:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762437, 43.310362]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561831.4, "northing": 4795563.1, "time": "07:37:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761941, 43.310095]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561791.4, "northing": 4795533.1, "time": "07:37:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761432, 43.30984]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561750.4, "northing": 4795504.4, "time": "07:37:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760908, 43.309603]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561708.2, "northing": 4795477.7, "time": "07:38:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760391, 43.309357]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561666.5, "northing": 4795450.0, "time": "07:38:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759892, 43.309091]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561626.3, "northing": 4795420.1, "time": "07:38:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759399, 43.308819]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561586.6, "northing": 4795389.5, "time": "07:39:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758883, 43.308574]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561545.0, "northing": 4795361.9, "time": "07:39:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758378, 43.308317]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561504.3, "northing": 4795333.0, "time": "07:39:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757865, 43.308066]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561462.9, "northing": 4795304.8, "time": "07:39:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757345, 43.307827]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561421.0, "northing": 4795277.8, "time": "07:40:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756846, 43.307559]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561380.8, "northing": 4795247.7, "time": "07:40:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756336, 43.307306]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561339.7, "northing": 4795219.2, "time": "07:40:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755819, 43.307062]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561298.0, "northing": 4795191.8, "time": "07:41:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75532, 43.306797]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561257.8, "northing": 4795162.0, "time": "07:41:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754817, 43.306534]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561217.3, "northing": 4795132.4, "time": "07:41:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754296, 43.306294]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561175.3, "northing": 4795105.3, "time": "07:41:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753789, 43.306038]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561134.4, "northing": 4795076.6, "time": "07:42:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753282, 43.305782]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561093.5, "northing": 4795047.7, "time": "07:42:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752772, 43.30553]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561052.4, "northing": 4795019.4, "time": "07:42:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752257, 43.305281]}, "properties": {"category": "real_shot", "line": "1107", "easting": 561010.9, "northing": 4794991.4, "time": "07:42:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751739, 43.305038]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560969.1, "northing": 4794964.0, "time": "07:43:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751214, 43.304801]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560926.8, "northing": 4794937.3, "time": "07:43:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750699, 43.304552]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560885.3, "northing": 4794909.3, "time": "07:43:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750199, 43.304289]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560845.0, "northing": 4794879.7, "time": "07:44:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749697, 43.304028]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560804.5, "northing": 4794850.3, "time": "07:44:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749203, 43.303758]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560764.7, "northing": 4794820.0, "time": "07:44:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748703, 43.303495]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560724.4, "northing": 4794790.4, "time": "07:44:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748198, 43.303237]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560683.7, "northing": 4794761.4, "time": "07:45:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747678, 43.302994]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560641.8, "northing": 4794734.0, "time": "07:45:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747163, 43.302747]}, "properties": {"category": "real_shot", "line": "1107", "easting": 560600.3, "northing": 4794706.2, "time": "07:45:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791863, 43.324402]}, "properties": {"category": "real_shot", "line": "1109", "easting": 564203.0, "northing": 4797144.5, "time": "12:58:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791321, 43.324188]}, "properties": {"category": "real_shot", "line": "1109", "easting": 564159.3, "northing": 4797120.3, "time": "12:59:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790735, 43.32402]}, "properties": {"category": "real_shot", "line": "1109", "easting": 564111.9, "northing": 4797101.2, "time": "12:59:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790172, 43.323817]}, "properties": {"category": "real_shot", "line": "1109", "easting": 564066.5, "northing": 4797078.3, "time": "12:59:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78969, 43.323539]}, "properties": {"category": "real_shot", "line": "1109", "easting": 564027.7, "northing": 4797047.0, "time": "12:59:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78921, 43.32325]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563989.1, "northing": 4797014.6, "time": "13:00:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788706, 43.32299]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563948.5, "northing": 4796985.3, "time": "13:00:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788167, 43.322772]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563905.0, "northing": 4796960.7, "time": "13:00:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787644, 43.32253]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563862.9, "northing": 4796933.4, "time": "13:01:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787145, 43.322266]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563822.7, "northing": 4796903.7, "time": "13:01:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786634, 43.322014]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563781.5, "northing": 4796875.3, "time": "13:01:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786113, 43.321774]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563739.5, "northing": 4796848.3, "time": "13:02:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785613, 43.321508]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563699.3, "northing": 4796818.4, "time": "13:02:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78512, 43.321237]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563659.6, "northing": 4796787.9, "time": "13:02:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784639, 43.320952]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563620.9, "northing": 4796755.9, "time": "13:02:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784141, 43.320687]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563580.8, "northing": 4796726.0, "time": "13:03:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783633, 43.320434]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563539.8, "northing": 4796697.6, "time": "13:03:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783144, 43.320158]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563500.5, "northing": 4796666.6, "time": "13:03:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782637, 43.319901]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563459.6, "northing": 4796637.6, "time": "13:04:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782106, 43.31967]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563416.8, "northing": 4796611.6, "time": "13:04:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781597, 43.319416]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563375.8, "northing": 4796583.0, "time": "13:04:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781088, 43.319163]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563334.8, "northing": 4796554.5, "time": "13:05:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780567, 43.318922]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563292.8, "northing": 4796527.3, "time": "13:05:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780047, 43.318679]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563250.9, "northing": 4796500.0, "time": "13:05:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779554, 43.318407]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563211.2, "northing": 4796469.4, "time": "13:06:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779055, 43.318142]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563171.0, "northing": 4796439.6, "time": "13:06:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778547, 43.317887]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563130.1, "northing": 4796410.8, "time": "13:06:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778035, 43.317637]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563088.8, "northing": 4796382.7, "time": "13:06:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777519, 43.31739]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563047.2, "northing": 4796354.9, "time": "13:07:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777002, 43.317145]}, "properties": {"category": "real_shot", "line": "1109", "easting": 563005.6, "northing": 4796327.3, "time": "13:07:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776512, 43.31687]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562966.1, "northing": 4796296.4, "time": "13:07:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776011, 43.316606]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562925.8, "northing": 4796266.7, "time": "13:08:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775498, 43.316358]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562884.4, "northing": 4796238.7, "time": "13:08:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77498, 43.316113]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562842.7, "northing": 4796211.2, "time": "13:08:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774482, 43.315847]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562802.6, "northing": 4796181.2, "time": "13:09:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773989, 43.315574]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562762.9, "northing": 4796150.6, "time": "13:09:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773476, 43.315327]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562721.5, "northing": 4796122.7, "time": "13:09:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772969, 43.31507]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562680.7, "northing": 4796093.8, "time": "13:09:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772469, 43.314806]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562640.4, "northing": 4796064.1, "time": "13:10:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77195, 43.314564]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562598.6, "northing": 4796036.8, "time": "13:10:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771447, 43.314303]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562558.0, "northing": 4796007.5, "time": "13:10:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770951, 43.314034]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562518.1, "northing": 4795977.2, "time": "13:11:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770443, 43.313778]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562477.2, "northing": 4795948.4, "time": "13:11:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769923, 43.313537]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562435.2, "northing": 4795921.3, "time": "13:11:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769411, 43.313287]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562394.0, "northing": 4795893.1, "time": "13:12:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768915, 43.313018]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562354.0, "northing": 4795862.9, "time": "13:12:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768412, 43.312757]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562313.5, "northing": 4795833.5, "time": "13:12:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767903, 43.312504]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562272.5, "northing": 4795805.0, "time": "13:13:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767387, 43.312256]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562230.9, "northing": 4795777.1, "time": "13:13:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766863, 43.31202]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562188.6, "northing": 4795750.5, "time": "13:13:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76636, 43.31176]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562148.1, "northing": 4795721.3, "time": "13:13:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765862, 43.311493]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562108.0, "northing": 4795691.3, "time": "13:14:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765357, 43.311234]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562067.3, "northing": 4795662.1, "time": "13:14:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764841, 43.310988]}, "properties": {"category": "real_shot", "line": "1109", "easting": 562025.7, "northing": 4795634.4, "time": "13:14:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764322, 43.310744]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561983.9, "northing": 4795606.9, "time": "13:15:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763829, 43.310473]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561944.2, "northing": 4795576.5, "time": "13:15:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763313, 43.310226]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561902.6, "northing": 4795548.7, "time": "13:15:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762799, 43.309979]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561861.1, "northing": 4795520.8, "time": "13:16:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762296, 43.309716]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561820.6, "northing": 4795491.3, "time": "13:16:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761788, 43.309462]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561779.7, "northing": 4795462.7, "time": "13:16:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761269, 43.30922]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561737.8, "northing": 4795435.4, "time": "13:16:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760742, 43.308986]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561695.3, "northing": 4795409.0, "time": "13:17:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760232, 43.308731]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561654.2, "northing": 4795380.4, "time": "13:17:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759729, 43.30847]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561613.7, "northing": 4795351.0, "time": "13:17:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759207, 43.308229]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561571.6, "northing": 4795323.9, "time": "13:18:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758682, 43.307994]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561529.3, "northing": 4795297.4, "time": "13:18:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758182, 43.307731]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561489.0, "northing": 4795267.8, "time": "13:18:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757667, 43.307482]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561447.5, "northing": 4795239.8, "time": "13:19:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757171, 43.307214]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561407.5, "northing": 4795209.6, "time": "13:19:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756668, 43.306951]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561367.0, "northing": 4795180.1, "time": "13:19:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75616, 43.3067]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561326.0, "northing": 4795151.8, "time": "13:19:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755672, 43.306424]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561286.7, "northing": 4795120.8, "time": "13:20:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755148, 43.306184]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561244.5, "northing": 4795093.8, "time": "13:20:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754643, 43.305927]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561203.8, "northing": 4795064.8, "time": "13:20:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75415, 43.305654]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561164.1, "northing": 4795034.2, "time": "13:21:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753647, 43.305395]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561123.5, "northing": 4795005.0, "time": "13:21:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75313, 43.30515]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561081.8, "northing": 4794977.5, "time": "13:21:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752627, 43.30489]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561041.3, "northing": 4794948.2, "time": "13:22:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752135, 43.304617]}, "properties": {"category": "real_shot", "line": "1109", "easting": 561001.7, "northing": 4794917.5, "time": "13:22:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751633, 43.304356]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560961.2, "northing": 4794888.2, "time": "13:22:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751122, 43.304105]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560920.0, "northing": 4794859.9, "time": "13:23:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750608, 43.303855]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560878.6, "northing": 4794831.8, "time": "13:23:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750082, 43.303619]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560836.2, "northing": 4794805.2, "time": "13:23:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749575, 43.303363]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560795.3, "northing": 4794776.4, "time": "13:23:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749079, 43.303096]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560755.3, "northing": 4794746.4, "time": "13:24:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748569, 43.302842]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560714.2, "northing": 4794717.8, "time": "13:24:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748043, 43.302607]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560671.8, "northing": 4794691.3, "time": "13:24:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747544, 43.302343]}, "properties": {"category": "real_shot", "line": "1109", "easting": 560631.6, "northing": 4794661.6, "time": "13:25:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.747845, 43.302025]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560656.3, "northing": 4794626.6, "time": "06:51:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748361, 43.302267]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560697.9, "northing": 4794653.8, "time": "06:51:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748877, 43.302517]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560739.5, "northing": 4794681.9, "time": "06:51:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749369, 43.302786]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560779.2, "northing": 4794712.2, "time": "06:51:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749894, 43.303025]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560821.5, "northing": 4794739.1, "time": "06:52:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750434, 43.303245]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560865.1, "northing": 4794763.9, "time": "06:52:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750961, 43.30348]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560907.6, "northing": 4794790.4, "time": "06:52:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751495, 43.303708]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560950.7, "northing": 4794816.1, "time": "06:53:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752002, 43.303965]}, "properties": {"category": "real_shot", "line": "1111", "easting": 560991.5, "northing": 4794845.0, "time": "06:53:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752494, 43.304235]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561031.2, "northing": 4794875.4, "time": "06:53:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752991, 43.304501]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561071.2, "northing": 4794905.3, "time": "06:54:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753491, 43.304764]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561111.5, "northing": 4794934.8, "time": "06:54:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753994, 43.305029]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561152.0, "northing": 4794964.6, "time": "06:54:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754492, 43.305293]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561192.2, "northing": 4794994.3, "time": "06:55:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75499, 43.305558]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561232.3, "northing": 4795024.1, "time": "06:55:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755494, 43.305819]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561272.9, "northing": 4795053.5, "time": "06:55:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755998, 43.306077]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561313.5, "northing": 4795082.5, "time": "06:56:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756505, 43.306333]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561354.4, "northing": 4795111.3, "time": "06:56:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757018, 43.306583]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561395.7, "northing": 4795139.4, "time": "06:56:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757534, 43.306828]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561437.3, "northing": 4795167.0, "time": "06:57:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758058, 43.307068]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561479.6, "northing": 4795194.1, "time": "06:57:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758584, 43.307303]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561522.0, "northing": 4795220.6, "time": "06:57:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759097, 43.307554]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561563.4, "northing": 4795248.8, "time": "06:58:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759582, 43.307831]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561602.4, "northing": 4795279.9, "time": "06:58:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76007, 43.308111]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561641.7, "northing": 4795311.4, "time": "06:58:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760553, 43.308392]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561680.6, "northing": 4795342.9, "time": "06:59:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761048, 43.308659]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561720.5, "northing": 4795373.0, "time": "06:59:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761555, 43.308914]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561761.3, "northing": 4795401.6, "time": "06:59:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762078, 43.309157]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561803.5, "northing": 4795429.0, "time": "07:00:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762571, 43.309428]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561843.2, "northing": 4795459.5, "time": "07:00:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763067, 43.309693]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561883.2, "northing": 4795489.3, "time": "07:00:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763574, 43.309949]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561924.0, "northing": 4795518.1, "time": "07:01:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764119, 43.310163]}, "properties": {"category": "real_shot", "line": "1111", "easting": 561968.0, "northing": 4795542.3, "time": "07:01:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764662, 43.310383]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562011.8, "northing": 4795567.1, "time": "07:01:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765162, 43.310647]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562052.1, "northing": 4795596.8, "time": "07:02:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765662, 43.31091]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562092.4, "northing": 4795626.4, "time": "07:02:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766178, 43.311155]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562134.0, "northing": 4795654.0, "time": "07:02:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766702, 43.311395]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562176.2, "northing": 4795681.0, "time": "07:02:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76719, 43.311673]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562215.5, "northing": 4795712.2, "time": "07:03:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767678, 43.31195]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562254.8, "northing": 4795743.4, "time": "07:03:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768166, 43.312224]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562294.1, "northing": 4795774.1, "time": "07:03:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768652, 43.312505]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562333.2, "northing": 4795805.7, "time": "07:04:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769169, 43.312746]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562374.9, "northing": 4795832.9, "time": "07:04:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769723, 43.312955]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562419.6, "northing": 4795856.5, "time": "07:04:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770258, 43.313181]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562462.8, "northing": 4795882.0, "time": "07:05:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770756, 43.313445]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562502.9, "northing": 4795911.7, "time": "07:05:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771255, 43.313712]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562543.1, "northing": 4795941.7, "time": "07:05:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771775, 43.313955]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562585.0, "northing": 4795969.1, "time": "07:06:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772291, 43.314201]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562626.6, "northing": 4795996.8, "time": "07:06:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772787, 43.314469]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562666.5, "northing": 4796026.9, "time": "07:06:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773288, 43.314731]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562706.9, "northing": 4796056.4, "time": "07:07:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773807, 43.314974]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562748.7, "northing": 4796083.8, "time": "07:07:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77433, 43.315215]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562790.9, "northing": 4796110.9, "time": "07:07:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774823, 43.315486]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562830.6, "northing": 4796141.4, "time": "07:08:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77533, 43.315741]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562871.4, "northing": 4796170.1, "time": "07:08:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775858, 43.315974]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562914.0, "northing": 4796196.4, "time": "07:08:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776356, 43.316241]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562954.1, "northing": 4796226.4, "time": "07:09:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77686, 43.316502]}, "properties": {"category": "real_shot", "line": "1111", "easting": 562994.7, "northing": 4796255.8, "time": "07:09:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777371, 43.316753]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563035.9, "northing": 4796284.0, "time": "07:09:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77788, 43.317006]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563076.9, "northing": 4796312.5, "time": "07:10:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778395, 43.317255]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563118.4, "northing": 4796340.5, "time": "07:10:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778905, 43.317508]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563159.5, "northing": 4796369.0, "time": "07:10:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77942, 43.317754]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563201.0, "northing": 4796396.7, "time": "07:10:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779946, 43.317989]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563243.4, "northing": 4796423.2, "time": "07:11:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780447, 43.318254]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563283.8, "northing": 4796453.1, "time": "07:11:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780931, 43.318535]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563322.7, "northing": 4796484.6, "time": "07:11:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781429, 43.3188]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563362.8, "northing": 4796514.4, "time": "07:12:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781931, 43.319059]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563403.3, "northing": 4796543.6, "time": "07:12:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782446, 43.319309]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563444.8, "northing": 4796571.7, "time": "07:12:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782949, 43.31957]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563485.3, "northing": 4796601.1, "time": "07:13:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783434, 43.319849]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563524.3, "northing": 4796632.5, "time": "07:13:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783932, 43.320116]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563564.4, "northing": 4796662.5, "time": "07:13:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784441, 43.320368]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563605.4, "northing": 4796690.9, "time": "07:14:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784925, 43.320651]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563644.4, "northing": 4796722.6, "time": "07:14:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785422, 43.320915]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563684.4, "northing": 4796752.4, "time": "07:14:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78597, 43.321127]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563728.6, "northing": 4796776.3, "time": "07:15:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786491, 43.321374]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563770.6, "northing": 4796804.1, "time": "07:15:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78699, 43.321637]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563810.8, "northing": 4796833.7, "time": "07:15:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787508, 43.32188]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563852.5, "northing": 4796861.1, "time": "07:16:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788032, 43.322119]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563894.8, "northing": 4796888.1, "time": "07:16:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788573, 43.322339]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563938.4, "northing": 4796912.9, "time": "07:16:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789089, 43.322585]}, "properties": {"category": "real_shot", "line": "1111", "easting": 563980.0, "northing": 4796940.6, "time": "07:17:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789589, 43.322851]}, "properties": {"category": "real_shot", "line": "1111", "easting": 564020.2, "northing": 4796970.5, "time": "07:17:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790094, 43.323108]}, "properties": {"category": "real_shot", "line": "1111", "easting": 564060.9, "northing": 4796999.5, "time": "07:17:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7906, 43.323364]}, "properties": {"category": "real_shot", "line": "1111", "easting": 564101.7, "northing": 4797028.3, "time": "07:17:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791109, 43.323618]}, "properties": {"category": "real_shot", "line": "1111", "easting": 564142.7, "northing": 4797056.9, "time": "07:18:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791622, 43.323867]}, "properties": {"category": "real_shot", "line": "1111", "easting": 564184.0, "northing": 4797084.9, "time": "07:18:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792143, 43.32411]}, "properties": {"category": "real_shot", "line": "1111", "easting": 564226.0, "northing": 4797112.3, "time": "07:18:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748281, 43.301568]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560692.1, "northing": 4794576.1, "time": "13:27:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74879, 43.301815]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560733.2, "northing": 4794603.9, "time": "13:27:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749295, 43.302071]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560773.9, "northing": 4794632.7, "time": "13:28:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7498, 43.302329]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560814.6, "northing": 4794661.7, "time": "13:28:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750308, 43.302585]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560855.5, "northing": 4794690.5, "time": "13:28:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750811, 43.302843]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560896.1, "northing": 4794719.6, "time": "13:28:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751318, 43.303101]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560936.9, "northing": 4794748.6, "time": "13:29:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751823, 43.303359]}, "properties": {"category": "real_shot", "line": "1113", "easting": 560977.6, "northing": 4794777.6, "time": "13:29:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752325, 43.303619]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561018.1, "northing": 4794806.8, "time": "13:29:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752829, 43.30388]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561058.7, "northing": 4794836.2, "time": "13:30:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753328, 43.304143]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561098.9, "northing": 4794865.8, "time": "13:30:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75383, 43.304405]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561139.4, "northing": 4794895.2, "time": "13:30:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754331, 43.304668]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561179.7, "northing": 4794924.8, "time": "13:30:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754827, 43.304937]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561219.7, "northing": 4794955.0, "time": "13:31:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755326, 43.305201]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561259.9, "northing": 4794984.7, "time": "13:31:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755841, 43.305449]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561301.4, "northing": 4795012.6, "time": "13:31:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75637, 43.30568]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561344.1, "northing": 4795038.7, "time": "13:32:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75688, 43.305934]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561385.2, "northing": 4795067.3, "time": "13:32:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757386, 43.306191]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561426.0, "northing": 4795096.2, "time": "13:32:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757891, 43.30645]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561466.7, "northing": 4795125.3, "time": "13:32:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758404, 43.306701]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561508.0, "northing": 4795153.6, "time": "13:33:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758933, 43.30693]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561550.7, "northing": 4795179.4, "time": "13:33:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759441, 43.307186]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561591.6, "northing": 4795208.2, "time": "13:33:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759937, 43.307455]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561631.6, "northing": 4795238.4, "time": "13:34:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760447, 43.307709]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561672.7, "northing": 4795267.0, "time": "13:34:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760969, 43.307947]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561714.8, "northing": 4795293.8, "time": "13:34:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76148, 43.308198]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561756.0, "northing": 4795322.1, "time": "13:35:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761979, 43.308465]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561796.2, "northing": 4795352.1, "time": "13:35:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762488, 43.308718]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561837.2, "northing": 4795380.6, "time": "13:35:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763003, 43.308966]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561878.7, "northing": 4795408.5, "time": "13:35:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763503, 43.30923]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561919.0, "northing": 4795438.2, "time": "13:36:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764008, 43.309489]}, "properties": {"category": "real_shot", "line": "1113", "easting": 561959.7, "northing": 4795467.3, "time": "13:36:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76453, 43.309728]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562001.8, "northing": 4795494.2, "time": "13:36:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765038, 43.309983]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562042.7, "northing": 4795523.0, "time": "13:37:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765536, 43.31025]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562082.8, "northing": 4795553.0, "time": "13:37:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766038, 43.310511]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562123.3, "northing": 4795582.3, "time": "13:37:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766551, 43.31076]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562164.6, "northing": 4795610.4, "time": "13:37:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767072, 43.311003]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562206.6, "northing": 4795637.7, "time": "13:38:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767576, 43.311261]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562247.2, "northing": 4795666.8, "time": "13:38:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76807, 43.311531]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562287.0, "northing": 4795697.1, "time": "13:38:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768574, 43.311792]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562327.6, "northing": 4795726.5, "time": "13:39:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769079, 43.312049]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562368.3, "northing": 4795755.4, "time": "13:39:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76958, 43.312311]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562408.7, "northing": 4795784.9, "time": "13:39:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770084, 43.312571]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562449.3, "northing": 4795814.1, "time": "13:39:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770588, 43.31283]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562489.9, "northing": 4795843.3, "time": "13:40:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771097, 43.313085]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562530.9, "northing": 4795872.0, "time": "13:40:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771614, 43.313329]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562572.6, "northing": 4795899.4, "time": "13:40:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772117, 43.313591]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562613.1, "northing": 4795928.9, "time": "13:41:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772612, 43.313859]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562653.0, "northing": 4795959.1, "time": "13:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773121, 43.314112]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562694.0, "northing": 4795987.5, "time": "13:41:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773634, 43.314363]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562735.3, "northing": 4796015.8, "time": "13:41:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77413, 43.314632]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562775.3, "northing": 4796046.0, "time": "13:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774632, 43.314894]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562815.7, "northing": 4796075.5, "time": "13:42:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775141, 43.315147]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562856.7, "northing": 4796104.0, "time": "13:42:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775656, 43.315395]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562898.2, "northing": 4796131.9, "time": "13:43:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776178, 43.315634]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562940.3, "northing": 4796158.9, "time": "13:43:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77669, 43.315885]}, "properties": {"category": "real_shot", "line": "1113", "easting": 562981.6, "northing": 4796187.1, "time": "13:43:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777191, 43.316149]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563021.9, "northing": 4796216.8, "time": "13:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777693, 43.316409]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563062.4, "northing": 4796246.1, "time": "13:44:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778204, 43.316662]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563103.5, "northing": 4796274.6, "time": "13:44:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778723, 43.316905]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563145.4, "northing": 4796301.9, "time": "13:44:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779244, 43.317146]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563187.4, "northing": 4796329.1, "time": "13:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779751, 43.317403]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563228.2, "northing": 4796358.0, "time": "13:45:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780254, 43.317663]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563268.7, "northing": 4796387.3, "time": "13:45:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780766, 43.317913]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563310.0, "northing": 4796415.4, "time": "13:45:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781291, 43.318151]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563352.3, "northing": 4796442.2, "time": "13:46:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781796, 43.318411]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563393.0, "northing": 4796471.5, "time": "13:46:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782296, 43.318672]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563433.3, "northing": 4796500.9, "time": "13:46:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782802, 43.318931]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563474.0, "northing": 4796530.0, "time": "13:47:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783324, 43.31917]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563516.1, "northing": 4796557.0, "time": "13:47:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78383, 43.319428]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563556.9, "northing": 4796586.0, "time": "13:47:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784331, 43.319692]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563597.2, "northing": 4796615.7, "time": "13:48:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784842, 43.319942]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563638.4, "northing": 4796643.9, "time": "13:48:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785365, 43.320182]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563680.5, "northing": 4796670.9, "time": "13:48:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78587, 43.320441]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563721.2, "northing": 4796700.0, "time": "13:48:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786371, 43.320703]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563761.6, "northing": 4796729.5, "time": "13:49:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786888, 43.320949]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563803.2, "northing": 4796757.2, "time": "13:49:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78741, 43.321188]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563845.3, "northing": 4796784.2, "time": "13:49:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787908, 43.321456]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563885.4, "northing": 4796814.3, "time": "13:50:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788413, 43.321714]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563926.1, "northing": 4796843.4, "time": "13:50:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788936, 43.321952]}, "properties": {"category": "real_shot", "line": "1113", "easting": 563968.2, "northing": 4796870.2, "time": "13:50:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789447, 43.322204]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564009.4, "northing": 4796898.6, "time": "13:50:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789947, 43.322468]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564049.7, "northing": 4796928.3, "time": "13:51:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790456, 43.322722]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564090.7, "northing": 4796956.9, "time": "13:51:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790979, 43.322961]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564132.8, "northing": 4796983.8, "time": "13:51:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791478, 43.323226]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564173.0, "northing": 4797013.6, "time": "13:52:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79198, 43.323489]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564213.4, "northing": 4797043.2, "time": "13:52:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792485, 43.323746]}, "properties": {"category": "real_shot", "line": "1113", "easting": 564254.1, "northing": 4797072.2, "time": "13:52:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792694, 43.323523]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564271.3, "northing": 4797047.5, "time": "06:23:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792183, 43.323269]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564230.1, "northing": 4797019.0, "time": "06:24:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791671, 43.323019]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564188.9, "northing": 4796990.8, "time": "06:24:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791155, 43.322773]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564147.3, "northing": 4796963.1, "time": "06:24:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790639, 43.322529]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564105.7, "northing": 4796935.6, "time": "06:25:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790165, 43.322236]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564067.6, "northing": 4796902.7, "time": "06:25:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789707, 43.321926]}, "properties": {"category": "real_shot", "line": "1115", "easting": 564030.8, "northing": 4796867.9, "time": "06:25:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789241, 43.321625]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563993.3, "northing": 4796834.1, "time": "06:25:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788755, 43.321345]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563954.2, "northing": 4796802.7, "time": "06:26:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788216, 43.321125]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563910.7, "northing": 4796777.8, "time": "06:26:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787669, 43.320914]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563866.6, "northing": 4796753.9, "time": "06:26:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787127, 43.320694]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563822.9, "northing": 4796729.1, "time": "06:27:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786645, 43.320411]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563784.1, "northing": 4796697.3, "time": "06:27:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786159, 43.32013]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563745.0, "northing": 4796665.7, "time": "06:27:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785648, 43.319879]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563703.8, "northing": 4796637.5, "time": "06:27:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785133, 43.319633]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563662.3, "northing": 4796609.8, "time": "06:28:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784624, 43.319378]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563621.3, "northing": 4796581.0, "time": "06:28:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78411, 43.319129]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563579.9, "northing": 4796553.0, "time": "06:28:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783628, 43.318847]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563541.1, "northing": 4796521.3, "time": "06:29:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783144, 43.318566]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563502.1, "northing": 4796489.7, "time": "06:29:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782647, 43.318297]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563462.1, "northing": 4796459.5, "time": "06:29:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782139, 43.318043]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563421.2, "northing": 4796430.9, "time": "06:29:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781618, 43.317802]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563379.2, "northing": 4796403.7, "time": "06:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781086, 43.317574]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563336.3, "northing": 4796378.0, "time": "06:30:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780587, 43.317306]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563296.1, "northing": 4796347.9, "time": "06:30:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780082, 43.317049]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563255.4, "northing": 4796319.0, "time": "06:31:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779567, 43.316801]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563213.9, "northing": 4796291.0, "time": "06:31:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779038, 43.316569]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563171.3, "northing": 4796264.9, "time": "06:31:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778511, 43.316334]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563128.8, "northing": 4796238.4, "time": "06:31:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778006, 43.316076]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563088.1, "northing": 4796209.3, "time": "06:32:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777501, 43.315816]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563047.4, "northing": 4796180.1, "time": "06:32:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777007, 43.315547]}, "properties": {"category": "real_shot", "line": "1115", "easting": 563007.6, "northing": 4796149.8, "time": "06:32:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776521, 43.315268]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562968.5, "northing": 4796118.5, "time": "06:33:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776022, 43.315004]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562928.3, "northing": 4796088.8, "time": "06:33:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775501, 43.314763]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562886.3, "northing": 4796061.6, "time": "06:33:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774999, 43.314501]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562845.9, "northing": 4796032.1, "time": "06:33:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774509, 43.314227]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562806.4, "northing": 4796001.3, "time": "06:34:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774004, 43.313968]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562765.7, "northing": 4795972.2, "time": "06:34:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773485, 43.313727]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562723.9, "northing": 4795945.0, "time": "06:34:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772988, 43.313458]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562683.9, "northing": 4795914.8, "time": "06:35:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772483, 43.313198]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562643.2, "northing": 4795885.6, "time": "06:35:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771955, 43.312966]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562600.6, "northing": 4795859.4, "time": "06:35:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771444, 43.312715]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562559.4, "northing": 4795831.1, "time": "06:35:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770935, 43.312461]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562518.4, "northing": 4795802.5, "time": "06:36:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770425, 43.312207]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562477.3, "northing": 4795773.9, "time": "06:36:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769915, 43.311955]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562436.2, "northing": 4795745.6, "time": "06:36:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769405, 43.311701]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562395.1, "northing": 4795717.0, "time": "06:36:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768894, 43.31145]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562353.9, "northing": 4795688.7, "time": "06:37:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768382, 43.311198]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562312.7, "northing": 4795660.4, "time": "06:37:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767872, 43.310945]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562271.6, "northing": 4795631.9, "time": "06:37:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767359, 43.310696]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562230.2, "northing": 4795603.9, "time": "06:38:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766838, 43.310454]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562188.2, "northing": 4795576.6, "time": "06:38:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766322, 43.310208]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562146.6, "northing": 4795548.9, "time": "06:38:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765802, 43.309965]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562104.7, "northing": 4795521.5, "time": "06:38:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765285, 43.309721]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562063.0, "northing": 4795494.0, "time": "06:39:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764802, 43.309441]}, "properties": {"category": "real_shot", "line": "1115", "easting": 562024.1, "northing": 4795462.6, "time": "06:39:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764315, 43.309159]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561984.9, "northing": 4795430.9, "time": "06:39:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763817, 43.308893]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561944.8, "northing": 4795401.0, "time": "06:40:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763309, 43.308639]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561903.9, "northing": 4795372.4, "time": "06:40:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762786, 43.308401]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561861.7, "northing": 4795345.6, "time": "06:40:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762274, 43.308151]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561820.4, "northing": 4795317.5, "time": "06:40:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761788, 43.307871]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561781.3, "northing": 4795286.0, "time": "06:41:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761284, 43.30761]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561740.7, "northing": 4795256.6, "time": "06:41:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760759, 43.307377]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561698.3, "northing": 4795230.4, "time": "06:41:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760239, 43.307133]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561656.4, "northing": 4795202.9, "time": "06:42:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759736, 43.306872]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561615.9, "northing": 4795173.5, "time": "06:42:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75924, 43.306605]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561575.9, "northing": 4795143.5, "time": "06:42:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758735, 43.306346]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561535.2, "northing": 4795114.4, "time": "06:42:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758224, 43.306096]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561494.0, "northing": 4795086.2, "time": "06:43:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757702, 43.305856]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561451.9, "northing": 4795059.2, "time": "06:43:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757198, 43.305596]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561411.3, "northing": 4795030.0, "time": "06:43:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756695, 43.305333]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561370.8, "northing": 4795000.4, "time": "06:44:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756179, 43.305088]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561329.2, "northing": 4794972.8, "time": "06:44:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755667, 43.304839]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561287.9, "northing": 4794944.8, "time": "06:44:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755162, 43.30458]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561247.2, "northing": 4794915.6, "time": "06:44:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754663, 43.304314]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561207.0, "northing": 4794885.7, "time": "06:45:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754157, 43.304057]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561166.2, "northing": 4794856.8, "time": "06:45:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753638, 43.303813]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561124.4, "northing": 4794829.3, "time": "06:45:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75312, 43.30357]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561082.6, "northing": 4794802.0, "time": "06:45:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752589, 43.303339]}, "properties": {"category": "real_shot", "line": "1115", "easting": 561039.8, "northing": 4794775.9, "time": "06:46:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752083, 43.303083]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560999.0, "northing": 4794747.1, "time": "06:46:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75159, 43.30281]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560959.3, "northing": 4794716.5, "time": "06:46:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751102, 43.302534]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560920.0, "northing": 4794685.4, "time": "06:47:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7506, 43.302272]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560879.5, "northing": 4794656.0, "time": "06:47:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750094, 43.302015]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560838.7, "northing": 4794627.1, "time": "06:47:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749566, 43.301783]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560796.1, "northing": 4794600.9, "time": "06:47:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74905, 43.301538]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560754.5, "northing": 4794573.3, "time": "06:48:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.748559, 43.301263]}, "properties": {"category": "real_shot", "line": "1115", "easting": 560715.0, "northing": 4794542.4, "time": "06:48:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.793242, 43.322934]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564316.3, "northing": 4796982.6, "time": "13:55:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792756, 43.322658]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564277.2, "northing": 4796951.5, "time": "13:55:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79223, 43.322425]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564234.8, "northing": 4796925.3, "time": "13:55:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79172, 43.32217]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564193.7, "northing": 4796896.6, "time": "13:55:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791172, 43.32196]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564149.5, "northing": 4796872.8, "time": "13:56:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790631, 43.32174]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564105.9, "northing": 4796848.0, "time": "13:56:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790111, 43.321495]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564064.0, "northing": 4796820.4, "time": "13:56:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789578, 43.321269]}, "properties": {"category": "real_shot", "line": "1117", "easting": 564021.0, "northing": 4796794.8, "time": "13:57:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789063, 43.321019]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563979.5, "northing": 4796766.7, "time": "13:57:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788567, 43.320752]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563939.6, "northing": 4796736.7, "time": "13:57:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788072, 43.320483]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563899.7, "northing": 4796706.4, "time": "13:58:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787562, 43.32023]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563858.6, "northing": 4796677.9, "time": "13:58:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787031, 43.32]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563815.8, "northing": 4796652.0, "time": "13:58:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786527, 43.319739]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563775.2, "northing": 4796622.6, "time": "13:58:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786, 43.319506]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563732.7, "northing": 4796596.3, "time": "13:59:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785485, 43.319258]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563691.2, "northing": 4796568.4, "time": "13:59:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784973, 43.319005]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563650.0, "northing": 4796539.9, "time": "13:59:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784449, 43.31877]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563607.7, "northing": 4796513.4, "time": "14:00:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783952, 43.318502]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563567.7, "northing": 4796483.3, "time": "14:00:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783453, 43.318236]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563527.5, "northing": 4796453.3, "time": "14:00:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782946, 43.317981]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563486.7, "northing": 4796424.6, "time": "14:01:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782431, 43.317733]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563445.2, "northing": 4796396.7, "time": "14:01:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781909, 43.317493]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563403.1, "northing": 4796369.7, "time": "14:01:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781402, 43.317237]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563362.3, "northing": 4796340.8, "time": "14:02:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780907, 43.316968]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563322.4, "northing": 4796310.6, "time": "14:02:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780405, 43.316705]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563282.0, "northing": 4796281.0, "time": "14:02:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779903, 43.316445]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563241.5, "northing": 4796251.7, "time": "14:02:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779395, 43.31619]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563200.6, "northing": 4796223.0, "time": "14:03:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778881, 43.31594]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563159.2, "northing": 4796194.9, "time": "14:03:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77837, 43.315688]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563118.0, "northing": 4796166.5, "time": "14:03:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777853, 43.315444]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563076.3, "northing": 4796139.0, "time": "14:04:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777341, 43.315192]}, "properties": {"category": "real_shot", "line": "1117", "easting": 563035.1, "northing": 4796110.6, "time": "14:04:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776854, 43.314915]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562995.9, "northing": 4796079.5, "time": "14:04:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776358, 43.314646]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562955.9, "northing": 4796049.3, "time": "14:05:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775859, 43.314383]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562915.7, "northing": 4796019.7, "time": "14:05:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775349, 43.31413]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562874.6, "northing": 4795991.2, "time": "14:05:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774829, 43.313887]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562832.7, "northing": 4795963.8, "time": "14:05:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774332, 43.31362]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562792.7, "northing": 4795933.8, "time": "14:06:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773834, 43.313354]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562752.6, "northing": 4795903.9, "time": "14:06:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773318, 43.313107]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562711.0, "northing": 4795876.1, "time": "14:06:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772821, 43.31284]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562671.0, "northing": 4795846.0, "time": "14:07:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772324, 43.312574]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562630.9, "northing": 4795816.1, "time": "14:07:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771811, 43.312323]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562589.6, "northing": 4795787.9, "time": "14:07:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771288, 43.312085]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562547.4, "northing": 4795761.1, "time": "14:08:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770784, 43.311825]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562506.8, "northing": 4795731.8, "time": "14:08:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770286, 43.31156]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562466.7, "northing": 4795702.0, "time": "14:08:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769778, 43.311304]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562425.8, "northing": 4795673.2, "time": "14:09:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769265, 43.311055]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562384.4, "northing": 4795645.2, "time": "14:09:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768743, 43.310817]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562342.3, "northing": 4795618.3, "time": "14:09:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768235, 43.31056]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562301.4, "northing": 4795589.4, "time": "14:09:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767734, 43.310296]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562261.0, "northing": 4795559.7, "time": "14:10:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767232, 43.310035]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562220.6, "northing": 4795530.4, "time": "14:10:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76671, 43.309795]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562178.5, "northing": 4795503.3, "time": "14:10:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766199, 43.309544]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562137.3, "northing": 4795475.1, "time": "14:11:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765699, 43.30928]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562097.0, "northing": 4795445.4, "time": "14:11:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765191, 43.309024]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562056.1, "northing": 4795416.6, "time": "14:11:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764665, 43.308789]}, "properties": {"category": "real_shot", "line": "1117", "easting": 562013.7, "northing": 4795390.1, "time": "14:12:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764161, 43.308529]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561973.1, "northing": 4795360.8, "time": "14:12:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763654, 43.308274]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561932.2, "northing": 4795332.1, "time": "14:12:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763135, 43.30803]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561890.4, "northing": 4795304.6, "time": "14:12:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762613, 43.307791]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561848.3, "northing": 4795277.7, "time": "14:13:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76212, 43.307519]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561808.6, "northing": 4795247.2, "time": "14:13:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761617, 43.307258]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561768.0, "northing": 4795217.8, "time": "14:13:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761092, 43.307021]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561725.7, "northing": 4795191.1, "time": "14:14:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76058, 43.30677]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561684.4, "northing": 4795162.8, "time": "14:14:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760087, 43.306498]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561644.7, "northing": 4795132.3, "time": "14:14:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759588, 43.306235]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561604.5, "northing": 4795102.7, "time": "14:15:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759086, 43.305974]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561564.1, "northing": 4795073.3, "time": "14:15:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758577, 43.30572]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561523.0, "northing": 4795044.7, "time": "14:15:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758069, 43.305464]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561482.1, "northing": 4795015.9, "time": "14:16:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757558, 43.305212]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561440.9, "northing": 4794987.6, "time": "14:16:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757044, 43.304963]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561399.5, "northing": 4794959.6, "time": "14:16:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756525, 43.30472]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561357.6, "northing": 4794932.2, "time": "14:16:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756003, 43.304481]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561315.5, "northing": 4794905.3, "time": "14:17:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755505, 43.304215]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561275.4, "northing": 4794875.4, "time": "14:17:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755001, 43.303953]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561234.8, "northing": 4794845.9, "time": "14:17:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754489, 43.303706]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561193.5, "northing": 4794818.1, "time": "14:18:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753994, 43.303436]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561153.6, "northing": 4794787.7, "time": "14:18:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753506, 43.30316]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561114.3, "northing": 4794756.7, "time": "14:18:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753013, 43.302888]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561074.6, "northing": 4794726.2, "time": "14:19:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752511, 43.302626]}, "properties": {"category": "real_shot", "line": "1117", "easting": 561034.2, "northing": 4794696.7, "time": "14:19:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752009, 43.302366]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560993.7, "northing": 4794667.4, "time": "14:19:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751498, 43.302114]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560952.5, "northing": 4794639.1, "time": "14:20:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750983, 43.301865]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560911.0, "northing": 4794611.1, "time": "14:20:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750461, 43.301626]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560868.9, "northing": 4794584.1, "time": "14:20:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749942, 43.301383]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560827.0, "northing": 4794556.8, "time": "14:20:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749417, 43.301146]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560784.7, "northing": 4794530.1, "time": "14:21:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74891, 43.30089]}, "properties": {"category": "real_shot", "line": "1117", "easting": 560743.8, "northing": 4794501.3, "time": "14:21:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.74938, 43.300408]}, "properties": {"category": "real_shot", "line": "1119", "easting": 560782.4, "northing": 4794448.1, "time": "15:21:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749878, 43.300659]}, "properties": {"category": "real_shot", "line": "1119", "easting": 560822.6, "northing": 4794476.3, "time": "15:21:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750343, 43.300956]}, "properties": {"category": "real_shot", "line": "1119", "easting": 560860.0, "northing": 4794509.6, "time": "15:21:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750779, 43.301289]}, "properties": {"category": "real_shot", "line": "1119", "easting": 560895.0, "northing": 4794547.0, "time": "15:22:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751279, 43.301553]}, "properties": {"category": "real_shot", "line": "1119", "easting": 560935.3, "northing": 4794576.6, "time": "15:22:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751807, 43.301784]}, "properties": {"category": "real_shot", "line": "1119", "easting": 560977.9, "northing": 4794602.7, "time": "15:22:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752345, 43.302009]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561021.3, "northing": 4794628.0, "time": "15:23:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752861, 43.302255]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561062.9, "northing": 4794655.7, "time": "15:23:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753357, 43.302522]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561102.9, "northing": 4794685.8, "time": "15:23:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753838, 43.302807]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561141.6, "northing": 4794717.8, "time": "15:23:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754349, 43.303058]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561182.8, "northing": 4794746.0, "time": "15:24:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754856, 43.303315]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561223.7, "northing": 4794774.9, "time": "15:24:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755371, 43.303562]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561265.2, "northing": 4794802.7, "time": "15:24:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.7559, 43.303793]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561307.9, "northing": 4794828.8, "time": "15:25:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756407, 43.30405]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561348.7, "northing": 4794857.7, "time": "15:25:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75691, 43.30431]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561389.3, "northing": 4794886.9, "time": "15:25:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757413, 43.30457]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561429.8, "northing": 4794916.2, "time": "15:25:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757918, 43.304831]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561470.5, "northing": 4794945.5, "time": "15:26:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758435, 43.305074]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561512.2, "northing": 4794972.9, "time": "15:26:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758953, 43.30532]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561553.9, "northing": 4795000.6, "time": "15:26:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75945, 43.305585]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561594.0, "northing": 4795030.4, "time": "15:27:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759957, 43.305843]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561634.8, "northing": 4795059.4, "time": "15:27:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760468, 43.306093]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561676.0, "northing": 4795087.6, "time": "15:27:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760982, 43.306342]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561717.5, "northing": 4795115.6, "time": "15:27:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761501, 43.306586]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561759.3, "northing": 4795143.1, "time": "15:28:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76203, 43.306817]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561802.0, "northing": 4795169.1, "time": "15:28:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762543, 43.307068]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561843.3, "northing": 4795197.4, "time": "15:28:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76304, 43.307335]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561883.4, "northing": 4795227.4, "time": "15:29:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763535, 43.307605]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561923.2, "northing": 4795257.7, "time": "15:29:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764025, 43.30788]}, "properties": {"category": "real_shot", "line": "1119", "easting": 561962.7, "northing": 4795288.6, "time": "15:29:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764524, 43.308145]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562002.9, "northing": 4795318.4, "time": "15:29:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765029, 43.3084]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562043.6, "northing": 4795347.2, "time": "15:30:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765537, 43.308656]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562084.5, "northing": 4795376.0, "time": "15:30:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766048, 43.308909]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562125.7, "northing": 4795404.4, "time": "15:30:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766563, 43.309157]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562167.2, "northing": 4795432.3, "time": "15:31:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76708, 43.309401]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562208.9, "northing": 4795459.8, "time": "15:31:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767602, 43.309639]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562251.0, "northing": 4795486.7, "time": "15:31:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76811, 43.309896]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562291.9, "northing": 4795515.6, "time": "15:31:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768616, 43.310155]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562332.7, "northing": 4795544.7, "time": "15:32:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769117, 43.310416]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562373.1, "northing": 4795574.1, "time": "15:32:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769616, 43.31068]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562413.3, "northing": 4795603.8, "time": "15:32:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770112, 43.310949]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562453.2, "northing": 4795634.0, "time": "15:33:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770607, 43.311217]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562493.1, "northing": 4795664.2, "time": "15:33:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771105, 43.311484]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562533.2, "northing": 4795694.2, "time": "15:33:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771604, 43.311748]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562573.4, "northing": 4795723.9, "time": "15:33:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772108, 43.312007]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562614.0, "northing": 4795753.0, "time": "15:34:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77263, 43.312247]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562656.1, "northing": 4795780.0, "time": "15:34:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773143, 43.312498]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562697.4, "northing": 4795808.3, "time": "15:34:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773651, 43.312752]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562738.4, "northing": 4795836.9, "time": "15:35:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774158, 43.313009]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562779.2, "northing": 4795865.8, "time": "15:35:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774662, 43.313269]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562819.8, "northing": 4795895.1, "time": "15:35:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775163, 43.313531]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562860.2, "northing": 4795924.6, "time": "15:35:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775679, 43.313777]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562901.8, "northing": 4795952.2, "time": "15:36:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776203, 43.314015]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562944.0, "northing": 4795979.1, "time": "15:36:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776709, 43.314272]}, "properties": {"category": "real_shot", "line": "1119", "easting": 562984.8, "northing": 4796008.0, "time": "15:36:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777219, 43.314525]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563025.9, "northing": 4796036.5, "time": "15:37:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777734, 43.314773]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563067.4, "northing": 4796064.4, "time": "15:37:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77825, 43.31502]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563109.0, "northing": 4796092.2, "time": "15:37:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778768, 43.315266]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563150.7, "northing": 4796119.9, "time": "15:37:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779289, 43.315506]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563192.7, "northing": 4796147.0, "time": "15:38:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779811, 43.315746]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563234.8, "northing": 4796174.0, "time": "15:38:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780334, 43.315983]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563277.0, "northing": 4796200.8, "time": "15:38:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780834, 43.316249]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563317.2, "northing": 4796230.7, "time": "15:39:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781321, 43.316527]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563356.4, "northing": 4796261.9, "time": "15:39:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781814, 43.316798]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563396.1, "northing": 4796292.4, "time": "15:39:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782314, 43.317061]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563436.4, "northing": 4796322.0, "time": "15:39:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782818, 43.31732]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563477.0, "northing": 4796351.1, "time": "15:40:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783326, 43.317576]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563517.9, "northing": 4796379.9, "time": "15:40:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783854, 43.317809]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563560.5, "northing": 4796406.2, "time": "15:40:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78437, 43.318056]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563602.1, "northing": 4796434.0, "time": "15:41:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784878, 43.318311]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563643.0, "northing": 4796462.8, "time": "15:41:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785398, 43.318553]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563684.9, "northing": 4796490.0, "time": "15:41:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785924, 43.318789]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563727.3, "northing": 4796516.6, "time": "15:41:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786427, 43.319052]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563767.8, "northing": 4796546.2, "time": "15:42:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786926, 43.319317]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563808.0, "northing": 4796576.0, "time": "15:42:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787426, 43.319577]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563848.3, "northing": 4796605.3, "time": "15:42:46"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787927, 43.319841]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563888.6, "northing": 4796635.0, "time": "15:43:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788426, 43.320107]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563928.8, "northing": 4796664.9, "time": "15:43:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788925, 43.320371]}, "properties": {"category": "real_shot", "line": "1119", "easting": 563969.0, "northing": 4796694.6, "time": "15:43:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789423, 43.320636]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564009.1, "northing": 4796724.4, "time": "15:43:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789944, 43.320878]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564051.1, "northing": 4796751.7, "time": "15:44:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790445, 43.321141]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564091.4, "northing": 4796781.3, "time": "15:44:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79096, 43.321389]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564132.9, "northing": 4796809.2, "time": "15:44:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791487, 43.321623]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564175.4, "northing": 4796835.6, "time": "15:45:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791997, 43.321876]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564216.5, "northing": 4796864.1, "time": "15:45:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792507, 43.32213]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564257.6, "northing": 4796892.7, "time": "15:45:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.793034, 43.322363]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564300.1, "northing": 4796919.0, "time": "15:45:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.793549, 43.322612]}, "properties": {"category": "real_shot", "line": "1119", "easting": 564341.6, "northing": 4796947.0, "time": "15:46:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749601, 43.300175]}, "properties": {"category": "real_shot", "line": "1121", "easting": 560800.6, "northing": 4794422.4, "time": "14:23:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750071, 43.300458]}, "properties": {"category": "real_shot", "line": "1121", "easting": 560838.4, "northing": 4794454.2, "time": "14:23:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750593, 43.300692]}, "properties": {"category": "real_shot", "line": "1121", "easting": 560880.5, "northing": 4794480.5, "time": "14:24:06"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751163, 43.300879]}, "properties": {"category": "real_shot", "line": "1121", "easting": 560926.6, "northing": 4794501.7, "time": "14:24:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751715, 43.30109]}, "properties": {"category": "real_shot", "line": "1121", "easting": 560971.1, "northing": 4794525.5, "time": "14:24:41"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752211, 43.301357]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561011.1, "northing": 4794555.5, "time": "14:24:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752703, 43.30163]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561050.7, "northing": 4794586.2, "time": "14:25:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753204, 43.301891]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561091.1, "northing": 4794615.6, "time": "14:25:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753732, 43.302124]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561133.7, "northing": 4794641.8, "time": "14:25:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754238, 43.302381]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561174.5, "northing": 4794670.7, "time": "14:26:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754742, 43.30264]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561215.1, "northing": 4794699.9, "time": "14:26:24"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755254, 43.302892]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561256.4, "northing": 4794728.2, "time": "14:26:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755773, 43.303135]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561298.2, "northing": 4794755.6, "time": "14:26:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756287, 43.303382]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561339.7, "northing": 4794783.4, "time": "14:27:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756783, 43.303651]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561379.6, "northing": 4794813.6, "time": "14:27:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757276, 43.303924]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561419.3, "northing": 4794844.3, "time": "14:27:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75777, 43.304191]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561459.1, "northing": 4794874.4, "time": "14:28:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758275, 43.304451]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561499.8, "northing": 4794903.6, "time": "14:28:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758783, 43.304705]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561540.8, "northing": 4794932.2, "time": "14:28:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759297, 43.304954]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561582.2, "northing": 4794960.2, "time": "14:28:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759787, 43.305228]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561621.7, "northing": 4794991.0, "time": "14:29:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760296, 43.305481]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561662.7, "northing": 4795019.5, "time": "14:29:33"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76081, 43.305731]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561704.1, "northing": 4795047.6, "time": "14:29:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761302, 43.306002]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561743.8, "northing": 4795078.1, "time": "14:30:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761804, 43.306265]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561784.2, "northing": 4795107.6, "time": "14:30:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762316, 43.306516]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561825.5, "northing": 4795135.9, "time": "14:30:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.76284, 43.306754]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561867.7, "northing": 4795162.7, "time": "14:31:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763352, 43.307004]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561909.0, "northing": 4795190.9, "time": "14:31:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763852, 43.307268]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561949.3, "northing": 4795220.6, "time": "14:31:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764357, 43.307525]}, "properties": {"category": "real_shot", "line": "1121", "easting": 561990.0, "northing": 4795249.5, "time": "14:31:51"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764866, 43.30778]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562031.0, "northing": 4795278.2, "time": "14:32:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765382, 43.308026]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562072.6, "northing": 4795305.9, "time": "14:32:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765898, 43.308273]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562114.2, "northing": 4795333.7, "time": "14:32:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766421, 43.30851]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562156.4, "northing": 4795360.4, "time": "14:33:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766925, 43.30877]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562197.0, "northing": 4795389.7, "time": "14:33:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767425, 43.309035]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562237.3, "northing": 4795419.4, "time": "14:33:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767932, 43.309291]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562278.1, "northing": 4795448.2, "time": "14:33:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768451, 43.309533]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562320.0, "northing": 4795475.5, "time": "14:34:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768958, 43.309791]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562360.8, "northing": 4795504.6, "time": "14:34:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769456, 43.310057]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562400.9, "northing": 4795534.5, "time": "14:34:43"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769969, 43.310304]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562442.3, "northing": 4795562.3, "time": "14:35:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770477, 43.310561]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562483.2, "northing": 4795591.2, "time": "14:35:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770972, 43.310831]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562523.1, "northing": 4795621.6, "time": "14:35:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.77148, 43.311086]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562564.0, "northing": 4795650.2, "time": "14:35:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772002, 43.311324]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562606.1, "northing": 4795677.1, "time": "14:36:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772502, 43.311587]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562646.4, "northing": 4795706.7, "time": "14:36:27"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773006, 43.311849]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562687.0, "northing": 4795736.1, "time": "14:36:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773509, 43.312109]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562727.5, "northing": 4795765.4, "time": "14:37:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774012, 43.31237]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562768.0, "northing": 4795794.7, "time": "14:37:19"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774512, 43.312633]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562808.3, "northing": 4795824.3, "time": "14:37:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775012, 43.312898]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562848.6, "northing": 4795854.1, "time": "14:37:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775522, 43.313149]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562889.7, "northing": 4795882.4, "time": "14:38:11"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776054, 43.313377]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562932.6, "northing": 4795908.1, "time": "14:38:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776561, 43.313636]}, "properties": {"category": "real_shot", "line": "1121", "easting": 562973.4, "northing": 4795937.3, "time": "14:38:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777061, 43.313899]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563013.7, "northing": 4795966.8, "time": "14:39:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777572, 43.314151]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563054.9, "northing": 4795995.2, "time": "14:39:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778093, 43.314392]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563096.9, "northing": 4796022.4, "time": "14:39:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778618, 43.314628]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563139.2, "northing": 4796049.0, "time": "14:39:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779132, 43.314879]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563180.6, "northing": 4796077.2, "time": "14:40:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779633, 43.31514]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563221.0, "northing": 4796106.6, "time": "14:40:29"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780153, 43.315383]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563262.9, "northing": 4796134.0, "time": "14:40:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780669, 43.315629]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563304.5, "northing": 4796161.7, "time": "14:41:04"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781172, 43.31589]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563345.0, "northing": 4796191.1, "time": "14:41:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781687, 43.316137]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563386.5, "northing": 4796218.9, "time": "14:41:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782204, 43.316382]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563428.2, "northing": 4796246.5, "time": "14:41:56"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782707, 43.316643]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563468.7, "northing": 4796275.9, "time": "14:42:14"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783216, 43.316898]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563509.7, "northing": 4796304.6, "time": "14:42:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78373, 43.317145]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563551.1, "northing": 4796332.4, "time": "14:42:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784248, 43.317391]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563592.9, "northing": 4796360.1, "time": "14:43:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784762, 43.317639]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563634.3, "northing": 4796388.0, "time": "14:43:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785251, 43.317914]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563673.7, "northing": 4796418.9, "time": "14:43:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785748, 43.318182]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563713.7, "northing": 4796449.1, "time": "14:43:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786252, 43.318442]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563754.3, "northing": 4796478.3, "time": "14:44:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786767, 43.318689]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563795.8, "northing": 4796506.2, "time": "14:44:32"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787286, 43.318931]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563837.6, "northing": 4796533.4, "time": "14:44:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787789, 43.319194]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563878.1, "northing": 4796563.0, "time": "14:45:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788285, 43.319461]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563918.1, "northing": 4796593.1, "time": "14:45:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.78879, 43.31972]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563958.7, "northing": 4796622.2, "time": "14:45:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789297, 43.319976]}, "properties": {"category": "real_shot", "line": "1121", "easting": 563999.6, "northing": 4796651.0, "time": "14:45:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789811, 43.320224]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564041.0, "northing": 4796679.0, "time": "14:46:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79031, 43.320488]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564081.2, "northing": 4796708.7, "time": "14:46:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790806, 43.320759]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564121.1, "northing": 4796739.1, "time": "14:46:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791309, 43.321018]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564161.6, "northing": 4796768.3, "time": "14:47:09"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791823, 43.321266]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564203.0, "northing": 4796796.2, "time": "14:47:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792322, 43.321531]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564243.2, "northing": 4796826.0, "time": "14:47:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792811, 43.321807]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564282.6, "northing": 4796857.1, "time": "14:48:01"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.793309, 43.322073]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564322.7, "northing": 4796887.0, "time": "14:48:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.793818, 43.322325]}, "properties": {"category": "real_shot", "line": "1121", "easting": 564363.7, "northing": 4796915.4, "time": "14:48:36"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79361, 43.321751]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564347.4, "northing": 4796851.5, "time": "14:52:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.793061, 43.321542]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564303.1, "northing": 4796827.8, "time": "14:53:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.79257, 43.321268]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564263.6, "northing": 4796797.0, "time": "14:53:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.792084, 43.320988]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564224.5, "northing": 4796765.6, "time": "14:53:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791557, 43.320754]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564182.0, "northing": 4796739.2, "time": "14:54:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.791035, 43.320514]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564139.9, "northing": 4796712.1, "time": "14:54:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790527, 43.320258]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564099.0, "northing": 4796683.3, "time": "14:54:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.790013, 43.32001]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564057.6, "northing": 4796655.3, "time": "14:55:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.789482, 43.31978]}, "properties": {"category": "real_shot", "line": "1123", "easting": 564014.8, "northing": 4796629.4, "time": "14:55:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788965, 43.319534]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563973.1, "northing": 4796601.7, "time": "14:55:39"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.788478, 43.319256]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563933.9, "northing": 4796570.4, "time": "14:55:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787976, 43.318994]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563893.5, "northing": 4796541.0, "time": "14:56:15"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787487, 43.31872]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563854.1, "northing": 4796510.2, "time": "14:56:34"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.787009, 43.318432]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563815.7, "northing": 4796477.8, "time": "14:56:52"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786527, 43.318149]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563776.9, "northing": 4796446.0, "time": "14:57:10"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.786043, 43.317869]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563737.9, "northing": 4796414.5, "time": "14:57:28"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785557, 43.31759]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563698.8, "northing": 4796383.2, "time": "14:57:47"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.785066, 43.317317]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563659.3, "northing": 4796352.5, "time": "14:58:05"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784572, 43.317047]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563619.5, "northing": 4796322.1, "time": "14:58:23"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.784069, 43.316786]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563579.0, "northing": 4796292.8, "time": "14:58:42"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783541, 43.316554]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563536.4, "northing": 4796266.6, "time": "14:59:00"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.783027, 43.316304]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563495.0, "northing": 4796238.4, "time": "14:59:18"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782521, 43.316047]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563454.2, "northing": 4796209.5, "time": "14:59:37"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.782012, 43.315791]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563413.2, "northing": 4796180.7, "time": "14:59:55"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.781485, 43.31556]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563370.7, "northing": 4796154.6, "time": "15:00:13"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780961, 43.31532]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563328.5, "northing": 4796127.6, "time": "15:00:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.780453, 43.315064]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563287.6, "northing": 4796098.8, "time": "15:00:50"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779928, 43.314827]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563245.2, "northing": 4796072.1, "time": "15:01:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.779422, 43.31457]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563204.5, "northing": 4796043.1, "time": "15:01:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778927, 43.314301]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563164.6, "northing": 4796012.9, "time": "15:01:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.778422, 43.314042]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563123.9, "northing": 4795983.7, "time": "15:02:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777902, 43.313801]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563082.0, "northing": 4795956.6, "time": "15:02:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.777404, 43.313535]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563041.9, "northing": 4795926.7, "time": "15:02:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776915, 43.31326]}, "properties": {"category": "real_shot", "line": "1123", "easting": 563002.5, "northing": 4795895.8, "time": "15:02:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.776427, 43.312983]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562963.2, "northing": 4795864.6, "time": "15:03:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775924, 43.312722]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562922.7, "northing": 4795835.3, "time": "15:03:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.775404, 43.31248]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562880.8, "northing": 4795808.0, "time": "15:03:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774907, 43.312211]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562840.8, "northing": 4795777.8, "time": "15:04:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.774394, 43.311965]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562799.4, "northing": 4795750.0, "time": "15:04:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773886, 43.311709]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562758.5, "northing": 4795721.2, "time": "15:04:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.773382, 43.311449]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562717.9, "northing": 4795692.0, "time": "15:05:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772877, 43.31119]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562677.2, "northing": 4795662.9, "time": "15:05:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.772371, 43.310934]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562636.4, "northing": 4795634.0, "time": "15:05:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771869, 43.310672]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562596.0, "northing": 4795604.6, "time": "15:06:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.771366, 43.310411]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562555.5, "northing": 4795575.2, "time": "15:06:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770858, 43.310158]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562514.5, "northing": 4795546.7, "time": "15:06:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.770338, 43.309915]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562472.6, "northing": 4795519.4, "time": "15:06:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769804, 43.309687]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562429.5, "northing": 4795493.6, "time": "15:07:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.769297, 43.30943]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562388.7, "northing": 4795464.7, "time": "15:07:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768796, 43.309169]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562348.3, "northing": 4795435.3, "time": "15:07:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.768286, 43.308915]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562307.2, "northing": 4795406.8, "time": "15:08:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767763, 43.308678]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562265.0, "northing": 4795380.1, "time": "15:08:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.767244, 43.308432]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562223.2, "northing": 4795352.4, "time": "15:08:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766741, 43.308171]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562182.7, "northing": 4795323.0, "time": "15:09:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.766236, 43.307913]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562142.0, "northing": 4795294.0, "time": "15:09:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765728, 43.307659]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562101.0, "northing": 4795265.4, "time": "15:09:45"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.765218, 43.307408]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562059.9, "northing": 4795237.1, "time": "15:10:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764702, 43.307161]}, "properties": {"category": "real_shot", "line": "1123", "easting": 562018.3, "northing": 4795209.3, "time": "15:10:22"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.764187, 43.306911]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561976.8, "northing": 4795181.2, "time": "15:10:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763672, 43.306664]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561935.3, "northing": 4795153.3, "time": "15:10:59"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.763156, 43.306419]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561893.7, "northing": 4795125.7, "time": "15:11:17"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762639, 43.306173]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561852.0, "northing": 4795098.1, "time": "15:11:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.762125, 43.305924]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561810.6, "northing": 4795070.0, "time": "15:11:54"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761641, 43.305643]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561771.6, "northing": 4795038.5, "time": "15:12:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.761147, 43.305372]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561731.8, "northing": 4795008.0, "time": "15:12:31"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760623, 43.305136]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561689.6, "northing": 4794981.4, "time": "15:12:49"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.760117, 43.304877]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561648.8, "northing": 4794952.3, "time": "15:13:08"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759611, 43.30462]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561608.0, "northing": 4794923.3, "time": "15:13:26"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.759085, 43.304386]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561565.6, "northing": 4794897.0, "time": "15:13:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75858, 43.304127]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561524.9, "northing": 4794867.8, "time": "15:14:03"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.758085, 43.303858]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561485.0, "northing": 4794837.6, "time": "15:14:21"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757583, 43.303597]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561444.6, "northing": 4794808.2, "time": "15:14:40"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.757075, 43.303341]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561403.6, "northing": 4794779.4, "time": "15:14:58"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756562, 43.303091]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561362.3, "northing": 4794751.3, "time": "15:15:16"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.756043, 43.30285]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561320.4, "northing": 4794724.1, "time": "15:15:35"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755544, 43.302584]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561280.2, "northing": 4794694.2, "time": "15:15:53"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.755056, 43.302309]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561240.9, "northing": 4794663.3, "time": "15:16:12"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754561, 43.302039]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561201.0, "northing": 4794633.0, "time": "15:16:30"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.754059, 43.301778]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561160.6, "northing": 4794603.6, "time": "15:16:48"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.753541, 43.301533]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561118.8, "northing": 4794576.1, "time": "15:17:07"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.75302, 43.301292]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561076.8, "northing": 4794548.9, "time": "15:17:25"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752514, 43.301034]}, "properties": {"category": "real_shot", "line": "1123", "easting": 561036.0, "northing": 4794519.9, "time": "15:17:44"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.752004, 43.300781]}, "properties": {"category": "real_shot", "line": "1123", "easting": 560994.9, "northing": 4794491.4, "time": "15:18:02"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.751485, 43.300538]}, "properties": {"category": "real_shot", "line": "1123", "easting": 560953.0, "northing": 4794464.1, "time": "15:18:20"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750954, 43.300309]}, "properties": {"category": "real_shot", "line": "1123", "easting": 560910.2, "northing": 4794438.2, "time": "15:18:38"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.750454, 43.300044]}, "properties": {"category": "real_shot", "line": "1123", "easting": 560869.9, "northing": 4794408.5, "time": "15:18:57"}}, {"type": "Feature", "geometry": {"type": "Point", "coordinates": [3.749973, 43.29976]}, "properties": {"category": "real_shot", "line": "1123", "easting": 560831.2, "northing": 4794376.6, "time": "15:19:15"}}], "count": 7204} \ No newline at end of file diff --git a/scripts/__pycache__/migrate_to_db.cpython-311.pyc b/scripts/__pycache__/migrate_to_db.cpython-311.pyc new file mode 100644 index 0000000..9dfd036 Binary files /dev/null and b/scripts/__pycache__/migrate_to_db.cpython-311.pyc differ diff --git a/scripts/check_node29.py b/scripts/check_node29.py new file mode 100755 index 0000000..7c75504 --- /dev/null +++ b/scripts/check_node29.py @@ -0,0 +1,22 @@ +import json + +data = json.load(open(r'F:\seismic_webapp\data\index.json')) + +node29 = data['nodes'].get('29') +if node29: + print(f"Node 29:") + print(f" Position: {node29.get('position')}") + print(f" Dates disponibles: {list(node29.get('dates', {}).keys())}") + for date, files in node29.get('dates', {}).items(): + print(f" {date}: {len(files)} fichiers") + for f in files[:2]: + print(f" - {f['path']}") +else: + print("Node 29 non trouvé dans l'index") + +print("\n--- Tous les nodes avec données ---") +for node_id, node in data['nodes'].items(): + if node.get('dates') and len(node['dates']) > 0: + has_pos = node.get('position') is not None + dates = list(node['dates'].keys()) + print(f"Node {node_id}: pos={has_pos}, dates={dates}") diff --git a/scripts/check_positions.py b/scripts/check_positions.py new file mode 100755 index 0000000..9420ad5 --- /dev/null +++ b/scripts/check_positions.py @@ -0,0 +1,22 @@ +import json + +data = json.load(open(r'F:\seismic_webapp\data\index.json')) + +nodes_with_data = [n for n in data['nodes'].values() if n.get('dates') and len(n['dates']) > 0] +print(f'Nodes avec donnees: {len(nodes_with_data)}') + +print('\n--- Nodes avec donnees et leurs positions ---') +for n in nodes_with_data[:10]: + pos = n.get('position') + has_pos = pos and pos.get('easting') and pos.get('northing') + print(f"Node {n['id']}: hasPos={has_pos}, pos={pos}") + +print('\n--- Nodes avec donnees SANS position valide ---') +no_pos_count = 0 +for n in nodes_with_data: + pos = n.get('position') + if not pos or not pos.get('easting') or not pos.get('northing'): + print(f"Node {n['id']}: pos={pos}") + no_pos_count += 1 + +print(f'\nTotal nodes sans position valide: {no_pos_count}') diff --git a/scripts/debug_inventory.py b/scripts/debug_inventory.py new file mode 100755 index 0000000..5ae52f7 --- /dev/null +++ b/scripts/debug_inventory.py @@ -0,0 +1,35 @@ +import json +d = json.load(open(r'F:\seismic_webapp\inventory.json')) + +# Verifier quelques fichiers +print("=== EXEMPLES DE FICHIERS ===") +for f in d[:5]: + print(f"File: {f['filename']}") + print(f" Bumper: {f['bumper_id']}, Channel: {f['channel']}") + print(f" Samples: {f['samples']}, Epoch: {f['epoch_time']}") + print() + +# Compter les bumpers uniques +bumpers = set(f['bumper_id'] for f in d if f['bumper_id']) +print(f"Bumpers uniques: {len(bumpers)}") +print(f"Liste: {sorted(bumpers, key=lambda x: int(x) if x and x.isdigit() else 999)[:30]}") + +# Verifier le probleme des samples +print("\n=== FICHIERS AVEC GROS SAMPLES ===") +big_files = [f for f in d if f['samples'] > 100000000] +for f in big_files[:5]: + print(f" {f['filename']}: {f['samples']} samples = {f['samples']/200/3600:.1f}h") + +# Stats par bumper +from collections import defaultdict +by_bumper = defaultdict(lambda: {'files': 0, 'channels': set()}) +for f in d: + if f['bumper_id']: + by_bumper[f['bumper_id']]['files'] += 1 + if f['channel']: + by_bumper[f['bumper_id']]['channels'].add(f['channel']) + +print(f"\n=== PAR BUMPER (premiers 20) ===") +for b in sorted(by_bumper.keys(), key=lambda x: int(x) if x.isdigit() else 999)[:20]: + s = by_bumper[b] + print(f" b{b}: {s['files']} files, channels: {sorted(s['channels'])}") diff --git a/scripts/extract_h5_calibrated.py b/scripts/extract_h5_calibrated.py new file mode 100755 index 0000000..e41f37b --- /dev/null +++ b/scripts/extract_h5_calibrated.py @@ -0,0 +1,71 @@ +#!/usr/bin/env python3 +""" +Script d'extraction de données H5 calibrées (format 2026). +Lit calibrated_data/channel_X (valeurs physiques avec unités). +""" + +import argparse +import json +import sys +import h5py +import numpy as np + +def extract_window(file_path: str, channel: int, start_ts: int, duration_sec: int) -> dict: + try: + with h5py.File(file_path, 'r') as f: + # Métadonnées + meta = f['metadata'] + sample_rate = meta.attrs['sample_rate_hz'] + file_duration = meta.attrs['duration_sec'] + total_samples = meta.attrs['n_samples'] + + # Dataset calibré + dataset = f[f'calibrated_data/channel_{channel}'] + + # Calcul indices (si start_ts = 0, on prend depuis le début) + start_idx = int(start_ts * sample_rate) if start_ts > 0 else 0 + num_samples = int(duration_sec * sample_rate) if duration_sec > 0 else total_samples + end_idx = min(start_idx + num_samples, total_samples) + + # Extraire + samples = dataset[start_idx:end_idx] + + # Unité selon le canal + unit = 'm/s' if channel in [1, 2, 3] else 'Pa' + channel_name = f'Geophone {channel}' if channel in [1, 2, 3] else 'Hydrophone' + + return { + "samples": samples.tolist(), + "start_idx": int(start_idx), + "end_idx": int(end_idx), + "total_samples": int(total_samples), + "sample_rate": int(sample_rate), + "duration_sec": float(file_duration), + "channel": channel, + "channel_name": channel_name, + "unit": unit, + "stats": { + "min": float(np.min(samples)), + "max": float(np.max(samples)), + "mean": float(np.mean(samples)), + "std": float(np.std(samples)), + "rms": float(np.sqrt(np.mean(samples**2))) + }, + "source": "calibrated_h5_2026" + } + except Exception as e: + return {"error": str(e)} + +def main(): + parser = argparse.ArgumentParser(description='Extraction H5 calibré') + parser.add_argument('--file', required=True, help='Fichier H5') + parser.add_argument('--channel', type=int, required=True, help='Canal 1-4') + parser.add_argument('--start', type=int, default=0, help='Offset secondes (0=début)') + parser.add_argument('--duration', type=int, default=0, help='Durée secondes (0=tout)') + args = parser.parse_args() + + result = extract_window(args.file, args.channel, args.start, args.duration) + print(json.dumps(result)) + +if __name__ == '__main__': + main() diff --git a/scripts/extract_hdf5_window.py b/scripts/extract_hdf5_window.py new file mode 100755 index 0000000..25760bf --- /dev/null +++ b/scripts/extract_hdf5_window.py @@ -0,0 +1,132 @@ +""" +Script d'extraction de fenêtres de données HDF5. +Appelé par le backend Node.js pour lire des portions de données ADC +sans charger tout le fichier en mémoire. + +Usage: + python extract_hdf5_window.py --file --channel --start --duration +""" + +import argparse +import json +import sys +from pathlib import Path + +try: + import h5py + import numpy as np +except ImportError as e: + print(json.dumps({"error": f"Module manquant: {e}"})) + sys.exit(1) + + +SAMPLE_RATE = 200 # Hz + + +def extract_window(file_path: str, channel: str, start_ts: int, duration_sec: int) -> dict: + """ + Extrait une fenêtre de données ADC d'un fichier HDF5. + + Args: + file_path: Chemin vers le fichier H5 + channel: Canal à extraire (ch0, ch1, ch2, ch3) + start_ts: Timestamp de début (secondes Unix) + duration_sec: Durée en secondes + + Returns: + dict avec les échantillons et métadonnées + """ + file_path = Path(file_path) + + if not file_path.exists(): + return {"error": f"Fichier non trouvé: {file_path}"} + + try: + with h5py.File(file_path, 'r') as f: + # Chaque fichier HDF5 contient un seul dataset 'adc_values' + # Le canal est déterminé par le nom du fichier, pas par un chemin interne + + if 'adc_values' not in f: + # Lister les datasets disponibles pour debug + available = [] + def visit(name, obj): + if isinstance(obj, h5py.Dataset): + available.append(name) + f.visititems(visit) + return {"error": f"Dataset 'adc_values' non trouvé. Disponibles: {available}"} + + dataset = f['adc_values'] + + # Récupérer les attributs de temps si disponibles + # Chercher d'abord dans les attributs du dataset, puis du fichier + file_start_ts = None + if 'timestamp' in dataset.attrs: + file_start_ts = int(dataset.attrs['timestamp']) + elif 'start_time' in dataset.attrs: + file_start_ts = int(dataset.attrs['start_time']) + elif 'timestamp' in f.attrs: + file_start_ts = int(f.attrs['timestamp']) + elif 'start_time' in f.attrs: + file_start_ts = int(f.attrs['start_time']) + + # Calculer les indices de début et fin + total_samples = dataset.shape[0] + + if file_start_ts is not None: + # Offset par rapport au début du fichier + offset_sec = max(0, start_ts - file_start_ts) + start_idx = int(offset_sec * SAMPLE_RATE) + else: + # Pas d'info de temps, prendre depuis le début + start_idx = 0 + + num_samples = int(duration_sec * SAMPLE_RATE) + end_idx = min(start_idx + num_samples, total_samples) + + # Limiter pour éviter les gros payloads (max 60 secondes = 12000 samples) + max_samples = 60 * SAMPLE_RATE + if end_idx - start_idx > max_samples: + end_idx = start_idx + max_samples + + # Extraire les données (lecture partielle, pas tout en RAM) + samples = dataset[start_idx:end_idx] + + # Garder en numpy pour les stats + samples_array = np.array(samples) if not isinstance(samples, np.ndarray) else samples + + return { + "samples": samples.tolist() if isinstance(samples, np.ndarray) else samples, + "start_idx": start_idx, + "end_idx": end_idx, + "total_samples": total_samples, + "file_start_ts": file_start_ts, + "channel": channel, + "stats": { + "min": float(np.min(samples_array)) if len(samples_array) > 0 else None, + "max": float(np.max(samples_array)) if len(samples_array) > 0 else None, + "mean": float(np.mean(samples_array)) if len(samples_array) > 0 else None, + "rms": float(np.sqrt(np.mean(samples_array**2))) if len(samples_array) > 0 else None, + } + } + + except Exception as e: + return {"error": str(e)} + + +def main(): + parser = argparse.ArgumentParser(description='Extraction de fenêtre HDF5') + parser.add_argument('--file', required=True, help='Chemin du fichier H5') + parser.add_argument('--channel', required=True, help='Canal (ch0-ch3)') + parser.add_argument('--start', type=int, required=True, help='Timestamp de début') + parser.add_argument('--duration', type=int, default=10, help='Durée en secondes') + + args = parser.parse_args() + + result = extract_window(args.file, args.channel, args.start, args.duration) + + # Sortie JSON pour le backend Node.js + print(json.dumps(result)) + + +if __name__ == '__main__': + main() diff --git a/scripts/generate_inventory.py b/scripts/generate_inventory.py new file mode 100755 index 0000000..9cb02fa --- /dev/null +++ b/scripts/generate_inventory.py @@ -0,0 +1,479 @@ +#!/usr/bin/env python3 +""" +Script pour générer un inventaire HTML de tous les fichiers HDF5. +Affiche: numéro de bumper, canal, date/heure début, date/heure fin, durée, nombre d'échantillons. +""" + +import os +import sys +import json +import h5py +import re +from datetime import datetime +from pathlib import Path +from collections import defaultdict + +# Configuration +SAMPLE_RATE = 200 # Hz +DATA_DIRS = [ + r"F:\2020-09-11", + r"E:\2020-09-11", + r"E:\2020-09-14", +] + +def parse_filename(filename): + """ + Parse le nom de fichier HDF5 pour extraire les infos. + Formats supportes: + - auto_260_061316_b0_13_212626_data_rsn84614_seq1_ch0_1598976585.h5 (bumper = 13) + - auto_255_061140_b119_12_230609_data_rsn5725_seq1_ch0_1599065292.h5 (bumper = 119) + """ + bumper_id = None + + # Format 1: _b0_XX_ (ex: _b0_13_) + bumper_match = re.search(r'_b0_(\d+)_', filename) + if bumper_match: + bumper_id = bumper_match.group(1) + else: + # Format 2: _bXXX_ (ex: _b119_) + bumper_match = re.search(r'_b(\d+)_', filename) + if bumper_match: + bumper_id = bumper_match.group(1) + + # Extraire le canal (ch0, ch1, ch2, ch3, ch5, ch6, ch7, ch15) + channel_match = re.search(r'_(ch\d+)_', filename) + channel = channel_match.group(1) if channel_match else None + + # Extraire l'epoch time (dernier nombre avant .h5) + epoch_match = re.search(r'_(\d{10})\.h5$', filename) + epoch_time = int(epoch_match.group(1)) if epoch_match else None + + # Type de fichier (data ou aux) + file_type = 'data' if '_data_' in filename else 'aux' if '_aux_' in filename else 'unknown' + + return { + 'bumper_id': bumper_id, + 'channel': channel, + 'epoch_time': epoch_time, + 'file_type': file_type + } + +def get_hdf5_info(filepath): + """ + Ouvre le fichier HDF5 et récupère le nombre d'échantillons. + """ + try: + with h5py.File(filepath, 'r') as f: + # Chercher le dataset adc_values + if 'adc_values' in f: + samples = f['adc_values'].shape[0] + return {'samples': samples, 'error': None} + else: + # Lister les datasets disponibles + datasets = list(f.keys()) + return {'samples': 0, 'error': f'No adc_values, found: {datasets}'} + except Exception as e: + return {'samples': 0, 'error': str(e)} + +def format_datetime(epoch_time): + """Formate un timestamp en date/heure lisible.""" + if not epoch_time: + return "N/A" + dt = datetime.fromtimestamp(epoch_time) + return dt.strftime('%Y-%m-%d %H:%M:%S') + +def format_duration(seconds): + """Formate une durée en heures:minutes:secondes.""" + hours = int(seconds // 3600) + minutes = int((seconds % 3600) // 60) + secs = int(seconds % 60) + if hours > 0: + return f"{hours}h {minutes}m {secs}s" + elif minutes > 0: + return f"{minutes}m {secs}s" + else: + return f"{secs}s" + +def scan_directory(data_dir): + """Scanne un répertoire pour trouver tous les fichiers HDF5.""" + files = [] + data_path = Path(data_dir) / 'data' + + if not data_path.exists(): + print(f" Directory not found: {data_path}") + return files + + for filepath in data_path.glob('*.h5'): + files.append(filepath) + + return files + +def generate_html(inventory, output_path): + """Génère le document HTML.""" + + # Organiser par bumper puis par canal + by_bumper = defaultdict(lambda: defaultdict(list)) + + for item in inventory: + bumper = item['bumper_id'] or 'unknown' + channel = item['channel'] or 'unknown' + by_bumper[bumper][channel].append(item) + + # Trier les bumpers numériquement + sorted_bumpers = sorted(by_bumper.keys(), key=lambda x: int(x) if x.isdigit() else 999) + + # Statistiques globales + total_files = len(inventory) + total_samples = sum(i['samples'] for i in inventory) + total_duration = total_samples / SAMPLE_RATE + total_errors = sum(1 for i in inventory if i['error']) + + # Compter par canal + channel_stats = defaultdict(lambda: {'files': 0, 'samples': 0, 'bumpers': set()}) + for item in inventory: + ch = item['channel'] or 'unknown' + channel_stats[ch]['files'] += 1 + channel_stats[ch]['samples'] += item['samples'] + if item['bumper_id']: + channel_stats[ch]['bumpers'].add(item['bumper_id']) + + html = f""" + + + + + Inventaire Fichiers HDF5 Sismiques + + + +

📊 Inventaire Fichiers HDF5 Sismiques

+

Généré le {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}

+ +
+
+
{total_files}
+
Fichiers HDF5
+
+
+
{len(sorted_bumpers)}
+
Bumpers (nodes)
+
+
+
{total_samples:,}
+
Échantillons total
+
+
+
{format_duration(total_duration)}
+
Durée totale @ 200Hz
+
+
+
{total_errors}
+
Erreurs lecture
+
+
+ +

📡 Résumé par Canal

+
+""" + + for ch in ['ch0', 'ch1', 'ch2', 'ch3']: + stats = channel_stats.get(ch, {'files': 0, 'samples': 0, 'bumpers': set()}) + duration = stats['samples'] / SAMPLE_RATE + html += f""" +
+

{ch.upper()}

+
{stats['files']} fichiers
+
{len(stats['bumpers'])} bumpers
+
{stats['samples']:,} samples
+
{format_duration(duration)}
+
+""" + + html += """ +
+ +

📋 Détail par Bumper

+ +
+ + + + + + +
+ + + + + + + + + + + + + + + + +""" + + for bumper in sorted_bumpers: + channels = by_bumper[bumper] + for channel in sorted(channels.keys()): + items = sorted(channels[channel], key=lambda x: x['epoch_time'] or 0) + for item in items: + duration_sec = item['samples'] / SAMPLE_RATE + end_time = (item['epoch_time'] + duration_sec) if item['epoch_time'] else None + + error_html = f'
{item["error"]}
' if item['error'] else '' + + html += f""" + + + + + + + + + + + +""" + + html += """ + +
BumperCanalTypeDébut (epoch)Début (date/heure)Fin (date/heure)DuréeSamplesFichier
b{bumper}{channel.upper()}{item['file_type'].upper()}{item['epoch_time'] or 'N/A'}{format_datetime(item['epoch_time'])}{format_datetime(end_time)}{format_duration(duration_sec)}{item['samples']:,}{item['filename']}{error_html}
+ + + + +""" + + with open(output_path, 'w', encoding='utf-8') as f: + f.write(html) + + print(f"\nHTML genere: {output_path}") + +def main(): + print("=" * 60) + print("INVENTAIRE DES FICHIERS HDF5 SISMIQUES") + print("=" * 60) + + # Charger l'index existant pour connaître tous les répertoires + index_path = Path(r"F:\seismic_webapp\data\index.json") + all_dirs = set() + + if index_path.exists(): + with open(index_path, 'r') as f: + index = json.load(f) + + # Récupérer tous les répertoires de dates + for node_data in index.get('nodes', {}).values(): + for files_list in node_data.get('dates', {}).values(): + # files_list est une liste de fichiers directement + if isinstance(files_list, list): + for file_info in files_list: + file_path = Path(file_info.get('path', '')) + if file_path.parent.parent.exists(): + all_dirs.add(str(file_path.parent.parent)) + + # Ajouter les répertoires par défaut + for d in DATA_DIRS: + if Path(d).exists(): + all_dirs.add(d) + + print(f"\nRépertoires à scanner: {len(all_dirs)}") + for d in sorted(all_dirs): + print(f" - {d}") + + # Scanner tous les fichiers + inventory = [] + + for data_dir in sorted(all_dirs): + print(f"\nScanning {data_dir}...") + files = scan_directory(data_dir) + print(f" Found {len(files)} HDF5 files") + + for i, filepath in enumerate(files): + if i % 50 == 0: + print(f" Processing {i}/{len(files)}...") + + parsed = parse_filename(filepath.name) + hdf5_info = get_hdf5_info(filepath) + + inventory.append({ + 'filepath': str(filepath), + 'filename': filepath.name, + 'directory': data_dir, + 'bumper_id': parsed['bumper_id'], + 'channel': parsed['channel'], + 'epoch_time': parsed['epoch_time'], + 'file_type': parsed['file_type'], + 'samples': hdf5_info['samples'], + 'error': hdf5_info['error'] + }) + + print(f"\nTotal: {len(inventory)} fichiers") + + # Générer le HTML + output_path = Path(r"F:\seismic_webapp\inventory.html") + generate_html(inventory, output_path) + + # Aussi sauvegarder en JSON pour référence + json_path = Path(r"F:\seismic_webapp\inventory.json") + with open(json_path, 'w', encoding='utf-8') as f: + json.dump(inventory, f, indent=2, ensure_ascii=False) + print(f"JSON genere: {json_path}") + +if __name__ == '__main__': + main() diff --git a/scripts/h5_api_server.py b/scripts/h5_api_server.py new file mode 100755 index 0000000..3550322 --- /dev/null +++ b/scripts/h5_api_server.py @@ -0,0 +1,125 @@ +#!/usr/bin/env python3 +from flask import Flask, jsonify, request, send_file +from flask_cors import CORS +import h5py +import json +from pathlib import Path +import re + +app = Flask(__name__) +CORS(app) + +H5_DIR = Path('/home/floppyrj45/docker/seismic-nodes-viewer/data/h5') +DOCS_DIR = Path('/home/floppyrj45/docker/seismic-nodes-viewer/data/docs') + +@app.route('/api/h5/files', methods=['GET']) +def list_files(): + try: + files = [] + for h5_file in sorted(H5_DIR.glob('*.h5')): + match = re.search(r'rsn(\d+)', h5_file.name) + node_id = match.group(1) if match else 'unknown' + match_date = re.search(r'_(\d{6})_', h5_file.name) + date = match_date.group(1) if match_date else '' + files.append({ + 'filename': h5_file.name, + 'nodeId': node_id, + 'date': date, + 'path': str(h5_file) + }) + return jsonify({'files': files, 'count': len(files)}) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/h5/data', methods=['GET']) +def get_data(): + try: + filename = request.args.get('file') + channel = int(request.args.get('channel', 1)) + start = int(request.args.get('start', 0)) + duration = int(request.args.get('duration', 10)) + + filepath = H5_DIR / filename + + with h5py.File(filepath, 'r') as f: + meta = f['metadata'] + sample_rate = meta.attrs['sample_rate_hz'] + file_duration = meta.attrs['duration_sec'] + total_samples = meta.attrs['n_samples'] + + dataset = f[f'calibrated_data/channel_{channel}'] + + start_idx = int(start * sample_rate) if start > 0 else 0 + num_samples = int(duration * sample_rate) if duration > 0 else total_samples + end_idx = min(start_idx + num_samples, total_samples) + + samples = dataset[start_idx:end_idx] + + unit = 'm/s' if channel in [1, 2, 3] else 'Pa' + channel_name = f'Geophone {channel}' if channel in [1, 2, 3] else 'Hydrophone' + + import numpy as np + return jsonify({ + 'samples': samples.tolist(), + 'start_idx': int(start_idx), + 'end_idx': int(end_idx), + 'total_samples': int(total_samples), + 'sample_rate': int(sample_rate), + 'duration_sec': float(file_duration), + 'channel': channel, + 'channel_name': channel_name, + 'unit': unit, + 'stats': { + 'min': float(np.min(samples)), + 'max': float(np.max(samples)), + 'mean': float(np.mean(samples)), + 'std': float(np.std(samples)), + 'rms': float(np.sqrt(np.mean(samples**2))) + } + }) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/docs/manifest', methods=['GET']) +def get_manifest(): + try: + manifest_file = DOCS_DIR / 'campaign_manifest.json' + with open(manifest_file, 'r') as f: + return jsonify(json.load(f)) + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/docs/', methods=['GET']) +def get_document(filename): + try: + doc_file = DOCS_DIR / filename + if not doc_file.exists(): + return jsonify({'error': 'File not found'}), 404 + return send_file(str(doc_file)) + except Exception as e: + return jsonify({'error': str(e)}), 500 + + +# === Endpoints pour la carte === +@app.route('/api/nodes', methods=['GET']) +def get_nodes(): + """Retourne la liste des nodes avec leurs positions""" + nodes = [ + {'id': '80274', 'lat': 43.40, 'lon': 3.70, 'name': 'Node 80274'}, + {'id': '2221', 'lat': 43.41, 'lon': 3.71, 'name': 'Node 2221'}, + {'id': '3541', 'lat': 43.39, 'lon': 3.69, 'name': 'Node 3541'}, + ] + return jsonify(nodes) + +@app.route('/api/dates', methods=['GET']) +def get_dates(): + """Retourne les dates disponibles""" + return jsonify(['2020-08-08', '2020-08-09', '2020-08-10']) + +@app.route('/api/migration-status', methods=['GET']) +def migration_status(): + """Status de migration (désactivé)""" + return jsonify({'status': 'complete'}) + +if __name__ == '__main__': + app.run(host='0.0.0.0', port=3004, debug=False) diff --git a/scripts/index_h5_2026.py b/scripts/index_h5_2026.py new file mode 100755 index 0000000..384d4e5 --- /dev/null +++ b/scripts/index_h5_2026.py @@ -0,0 +1,64 @@ +#!/usr/bin/env python3 +""" +Indexation des fichiers H5 format 2026 avec métadonnées complètes. +Génère un index JSON pour le viewer web. +""" + +import h5py +import json +from pathlib import Path +from datetime import datetime + +H5_DIR = Path('/home/floppyrj45/docker/seismic-nodes-viewer/data/h5') +OUTPUT = Path('/home/floppyrj45/docker/seismic-nodes-viewer/data/h5_index.json') + +def index_h5_files(): + files = [] + + for h5_file in sorted(H5_DIR.glob('*.h5')): + try: + with h5py.File(h5_file, 'r') as f: + meta = f['metadata'] + + # Extraire node ID du nom de fichier (rsn[0-9]+) + import re + match = re.search(r'rsn(\d+)', h5_file.name) + node_id = match.group(1) if match else 'unknown' + + # Extraire date du nom (YYMMDD) + match_date = re.search(r'_(\d{6})_', h5_file.name) + date_str = match_date.group(1) if match_date else '' + + files.append({ + 'filename': h5_file.name, + 'path': str(h5_file), + 'node_id': node_id, + 'date': date_str, + 'duration_sec': float(meta.attrs['duration_sec']), + 'sample_rate': int(meta.attrs['sample_rate_hz']), + 'channels': int(meta.attrs['n_channels']), + 'samples': int(meta.attrs['n_samples']), + 'size_mb': round(h5_file.stat().st_size / (1024*1024), 2), + 'channel_info': [ + {'id': 1, 'type': 'geophone', 'unit': 'm/s', 'name': 'Geophone 1'}, + {'id': 2, 'type': 'geophone', 'unit': 'm/s', 'name': 'Geophone 2'}, + {'id': 3, 'type': 'geophone', 'unit': 'm/s', 'name': 'Geophone 3'}, + {'id': 4, 'type': 'hydrophone', 'unit': 'Pa', 'name': 'Hydrophone'} + ] + }) + except Exception as e: + print(f'Error indexing {h5_file.name}: {e}') + + index = { + 'generated': datetime.now().isoformat(), + 'total_files': len(files), + 'total_duration_hours': sum(f['duration_sec'] for f in files) / 3600, + 'files': files + } + + OUTPUT.write_text(json.dumps(index, indent=2)) + print(f'✅ Indexed {len(files)} files → {OUTPUT}') + print(f'📊 Total duration: {index["total_duration_hours"]:.1f} hours') + +if __name__ == '__main__': + index_h5_files() diff --git a/scripts/index_h5_files.py b/scripts/index_h5_files.py new file mode 100755 index 0000000..ea7f397 --- /dev/null +++ b/scripts/index_h5_files.py @@ -0,0 +1,231 @@ +""" +Script d'indexation des fichiers HDF5 sismiques. +Parcourt les dossiers de données, extrait les métadonnées (node_id, date, canaux) +et génère un index JSON utilisé par l'API backend. +""" + +import os +import re +import json +import csv +from pathlib import Path +from datetime import datetime +from typing import Dict, List, Any + +# Pattern pour extraire les infos du nom de fichier +# Exemple: auto_256_070617_b67_14_025708_data_rsn6027_seq1_ch0_1599057453.h5 +# ou: auto_255_125334_b4_rsn13696_seq1_1599045513.h5 +FILENAME_PATTERN = re.compile( + r'auto_(\d+)_(\d{6})_b(\d+).*?_(\d{10})\.h5$', + re.IGNORECASE +) + +# Dossiers racine contenant les données H5 +DATA_ROOTS = [ + Path(r"F:\2020-09-12"), + Path(r"F:\2020-09-13"), + Path(r"F:\2020-09-14"), + Path(r"F:\2020-09-15"), + Path(r"F:\2020-09-16"), + Path(r"F:\2020-09-17"), + Path(r"F:\2020-09-18"), + Path(r"F:\2020-09-19"), + Path(r"F:\2020-09-21"), + Path(r"F:\2020-09-22"), + Path(r"F:\2020-09-23"), +] + +# Fichier CSV des positions +POSITIONS_CSV = Path(r"F:\Copie de SETE_AUV_DARFV4-Copier(1).csv") + +# Sortie +OUTPUT_INDEX = Path(r"F:\seismic_webapp\data\index.json") + + +def load_node_positions(csv_path: Path) -> Dict[str, Dict[str, Any]]: + """ + Charge les positions des nodes depuis le CSV. + Retourne un dict: node_id -> {easting, northing, depth, ...} + """ + positions = {} + + with open(csv_path, 'r', encoding='utf-8', errors='replace') as f: + # Sauter les premières lignes d'en-tête (lignes 1-4) + lines = f.readlines() + + # La ligne 4 (index 3) contient les vrais en-têtes + if len(lines) < 5: + return positions + + header_line = lines[3] + headers = header_line.strip().split(',') + + # Trouver les indices des colonnes importantes + # Utiliser Aslaid (positions réelles mesurées) plutôt que Preplot (planifiées) + try: + node_code_idx = headers.index('NodeCode') + # Priorité aux positions Aslaid (réelles), sinon Preplot (planifiées) + if 'Aslaid Easting' in headers: + easting_idx = headers.index('Aslaid Easting') + northing_idx = headers.index('Aslaid Northing') + depth_idx = headers.index('Aslaid Depth') if 'Aslaid Depth' in headers else None + print("Utilisation des coordonnées Aslaid (positions réelles)") + else: + easting_idx = headers.index('Preplot Easting') + northing_idx = headers.index('Preplot Northing') + depth_idx = headers.index('Preplot Depth') if 'Preplot Depth' in headers else None + print("Utilisation des coordonnées Preplot (positions planifiées)") + except ValueError as e: + print(f"Colonne manquante dans le CSV: {e}") + # Fallback sur indices connus (Aslaid) + node_code_idx = 3 + easting_idx = 9 # Aslaid Easting + northing_idx = 10 # Aslaid Northing + depth_idx = 11 # Aslaid Depth + + # Parser les lignes de données (à partir de la ligne 5) + for line in lines[4:]: + parts = line.strip().split(',') + if len(parts) <= max(node_code_idx, easting_idx, northing_idx): + continue + + node_code = parts[node_code_idx].strip() + if not node_code or node_code == '': + continue + + try: + easting = float(parts[easting_idx]) if parts[easting_idx] else None + northing = float(parts[northing_idx]) if parts[northing_idx] else None + depth = float(parts[depth_idx]) if depth_idx and parts[depth_idx] else 0.0 + except (ValueError, IndexError): + continue + + if easting and northing: + positions[node_code] = { + 'easting': easting, + 'northing': northing, + 'depth': depth, + } + + print(f"Chargé {len(positions)} positions de nodes") + return positions + + +def scan_h5_files(data_roots: List[Path]) -> Dict[str, Any]: + """ + Parcourt les dossiers et indexe tous les fichiers H5. + Retourne un dict structuré par node_id -> date -> fichiers + """ + index = {} + file_count = 0 + + for root in data_roots: + if not root.exists(): + print(f"Dossier non trouvé: {root}") + continue + + print(f"Scan de {root}...") + + for h5_file in root.rglob("*.h5"): + match = FILENAME_PATTERN.search(h5_file.name) + if not match: + # Essayer un pattern plus simple + simple_match = re.search(r'_b(\d+)_.*?(\d{10})\.h5$', h5_file.name, re.IGNORECASE) + if simple_match: + node_id = simple_match.group(1) + timestamp = int(simple_match.group(2)) + else: + continue + else: + node_id = match.group(3) + timestamp = int(match.group(4)) + + # Convertir timestamp en date + dt = datetime.fromtimestamp(timestamp) + date_str = dt.strftime('%Y-%m-%d') + + # Détecter les canaux disponibles dans le fichier + # Pour l'instant on suppose ch0-ch3 par défaut + channels = ['ch0', 'ch1', 'ch2', 'ch3'] + + # Structure: node_id -> date -> liste de fichiers + if node_id not in index: + index[node_id] = {} + + if date_str not in index[node_id]: + index[node_id][date_str] = [] + + index[node_id][date_str].append({ + 'path': str(h5_file), + 'timestamp': timestamp, + 'channels': channels, + 'size_bytes': h5_file.stat().st_size if h5_file.exists() else 0 + }) + + file_count += 1 + + print(f"Indexé {file_count} fichiers H5") + return index + + +def build_full_index(positions: Dict, files_index: Dict) -> Dict[str, Any]: + """ + Combine les positions et l'index des fichiers. + """ + full_index = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': 200, + 'nodes': {}, + 'dates': set(), + } + + # Fusionner les données + all_node_ids = set(files_index.keys()) | set(positions.keys()) + + for node_id in all_node_ids: + node_data = { + 'id': node_id, + 'position': positions.get(node_id, None), + 'dates': {} + } + + if node_id in files_index: + node_data['dates'] = files_index[node_id] + for date_str in files_index[node_id].keys(): + full_index['dates'].add(date_str) + + full_index['nodes'][node_id] = node_data + + # Convertir le set en liste triée + full_index['dates'] = sorted(list(full_index['dates'])) + + return full_index + + +def main(): + print("=== Indexation des fichiers HDF5 sismiques ===\n") + + # 1. Charger les positions + print("1. Chargement des positions des nodes...") + positions = load_node_positions(POSITIONS_CSV) + + # 2. Scanner les fichiers H5 + print("\n2. Scan des fichiers H5...") + files_index = scan_h5_files(DATA_ROOTS) + + # 3. Construire l'index complet + print("\n3. Construction de l'index...") + full_index = build_full_index(positions, files_index) + + # 4. Sauvegarder + print(f"\n4. Sauvegarde vers {OUTPUT_INDEX}...") + OUTPUT_INDEX.parent.mkdir(parents=True, exist_ok=True) + + with open(OUTPUT_INDEX, 'w', encoding='utf-8') as f: + json.dump(full_index, f, indent=2, ensure_ascii=False) + + print(f"\nTerminé! Index généré avec {len(full_index['nodes'])} nodes et {len(full_index['dates'])} dates.") + + +if __name__ == '__main__': + main() diff --git a/scripts/index_time_ranges.py b/scripts/index_time_ranges.py new file mode 100644 index 0000000..4bfab2f --- /dev/null +++ b/scripts/index_time_ranges.py @@ -0,0 +1,87 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + di = headers.index('Aslaid Depth') if 'Aslaid Depth' in headers else -1 + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[di]) if di != -1 else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + index = {} + file_count = 0 + print(f"Scanning H5 files... Positions loaded: {len(pos)}") + + all_files = [] + for root in DATA_ROOTS: + all_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_files): + try: + match = re.search(r'_b(\d+)_', h5_path.name) + if not match: continue + nid = match.group(1) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + ds = f['adc_values'] + start_ts = int(ds.attrs.get('timestamp', 0)) + if start_ts == 0: continue + + duration = ds.shape[0] / SAMPLE_RATE + end_ts = start_ts + duration + + if nid not in index: + index[nid] = { + 'id': nid, + 'position': pos.get(nid), + 'files': [] + } + + index[nid]['files'].append({ + 'path': str(h5_path), + 'start': start_ts, + 'end': end_ts, + 'channels': ['ch0', 'ch1', 'ch2', 'ch3'] + }) + file_count += 1 + except: continue + + # Sauvegarder l'index + with open(OUTPUT_INDEX, 'w') as f: + json.dump({ + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': index + }, f) + + print(f"Index généré: {file_count} fichiers, {len(index)} nodes avec positions.") + +if __name__ == '__main__': scan() diff --git a/scripts/index_ultimate.py b/scripts/index_ultimate.py new file mode 100644 index 0000000..7c00d1b --- /dev/null +++ b/scripts/index_ultimate.py @@ -0,0 +1,105 @@ +import os, re, json, h5py +from pathlib import Path +from datetime import datetime, timedelta +from tqdm import tqdm + +DATA_ROOTS = [Path("/mnt/kingston"), Path("/mnt/data_sdb1")] +POSITIONS_CSV = Path("/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv") +OUTPUT_INDEX = Path("/mnt/kingston/seismic_webapp/data/index.json") +SAMPLE_RATE = 200 + +def load_pos(): + positions = {} + if not POSITIONS_CSV.exists(): return {} + with open(POSITIONS_CSV, 'r', encoding='utf-8', errors='replace') as f: + lines = f.readlines() + if len(lines) < 5: return {} + headers = lines[3].strip().split(',') + try: + ni = headers.index('NodeCode') + ei = headers.index('Aslaid Easting') if 'Aslaid Easting' in headers else headers.index('Preplot Easting') + oi = headers.index('Aslaid Northing') if 'Aslaid Northing' in headers else headers.index('Preplot Northing') + except: return {} + for line in lines[4:]: + parts = line.strip().split(',') + try: + nid = parts[ni].strip() + positions[nid] = { + 'easting': float(parts[ei]), + 'northing': float(parts[oi]), + 'depth': float(parts[headers.index('Aslaid Depth')]) if 'Aslaid Depth' in headers else 0.0 + } + except: continue + return positions + +def scan(): + pos = load_pos() + nodes = {} + all_dates = set() + file_count = 0 + + print("🔍 Scanning ONLY 'data' H5 files (ignoring 'aux')...") + all_h5_files = [] + for root in DATA_ROOTS: + all_h5_files.extend(list(root.rglob("*.h5"))) + + for h5_path in tqdm(all_h5_files): + # FILTRE : Uniquement les fichiers contenant "data" + if "_data_" not in h5_path.name.lower(): + continue + + try: + match = re.search(r'auto_(\d+)_(\d{6})_b(\d+)_.*?_(\d{10})\.h5$', h5_path.name) + if not match: continue + + julian_day = int(match.group(1)) + time_str = match.group(2) + node_id = match.group(3) + + date_ref = datetime(2020, 1, 1) + timedelta(days=julian_day - 1) + date_str = date_ref.strftime('%Y-%m-%d') + + h, m, s = int(time_str[:2]), int(time_str[2:4]), int(time_str[4:6]) + actual_start_ts = int(datetime(2020, 1, 1).timestamp() + (julian_day - 1) * 86400 + h * 3600 + m * 60 + s) + + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: continue + duration = f['adc_values'].shape[0] / SAMPLE_RATE + actual_end_ts = actual_start_ts + duration + + all_dates.add(date_str) + + if node_id not in nodes: + nodes[node_id] = { + 'id': node_id, + 'position': pos.get(node_id), + 'files': [] + } + + # On extrait le canal du nom de fichier pour un matching plus précis + channel_match = re.search(r'_ch(\d+)_', h5_path.name) + channel = f"ch{channel_match.group(1)}" if channel_match else "ch0" + + nodes[node_id]['files'].append({ + 'path': str(h5_path), + 'start': actual_start_ts, + 'end': actual_end_ts, + 'julian': julian_day, + 'channel': channel # Canal spécifique au fichier + }) + file_count += 1 + except: continue + + result = { + 'generated_at': datetime.now().isoformat(), + 'sample_rate_hz': SAMPLE_RATE, + 'nodes': nodes, + 'dates': sorted(list(all_dates)) + } + + with open(OUTPUT_INDEX, 'w') as f: + json.dump(result, f, indent=2) + + print(f"✅ Index updated: {file_count} 'data' files, {len(nodes)} nodes.") + +if __name__ == '__main__': scan() diff --git a/scripts/inventory_h5.py b/scripts/inventory_h5.py new file mode 100755 index 0000000..3236325 --- /dev/null +++ b/scripts/inventory_h5.py @@ -0,0 +1,158 @@ +""" +Script d'inventaire des fichiers HDF5. +Extrait les timestamps des noms de fichiers et génère un rapport. +""" + +import os +import re +from pathlib import Path +from datetime import datetime +from collections import defaultdict + +# Dossiers racine +DATA_ROOTS = [ + Path(r"F:\2020-09-12"), + Path(r"F:\2020-09-13"), + Path(r"F:\2020-09-14"), + Path(r"F:\2020-09-15"), + Path(r"F:\2020-09-16"), + Path(r"F:\2020-09-17"), + Path(r"F:\2020-09-18"), + Path(r"F:\2020-09-19"), + Path(r"F:\2020-09-21"), + Path(r"F:\2020-09-22"), + Path(r"F:\2020-09-23"), +] + +# Pattern pour extraire node_id et timestamp +# Exemple: auto_256_070617_b67_14_025708_data_rsn6027_seq1_ch0_1599057453.h5 +PATTERN = re.compile(r'_b(\d+)_.*?(\d{10})\.h5$', re.IGNORECASE) + + +def main(): + print("=" * 70) + print("INVENTAIRE DES FICHIERS HDF5") + print("=" * 70) + + # Structure: folder -> node_id -> list of (timestamp, filename, type) + inventory = defaultdict(lambda: defaultdict(list)) + + # Stats globales + total_files = 0 + total_size = 0 + nodes_set = set() + timestamps_set = set() + + for root in DATA_ROOTS: + if not root.exists(): + continue + + folder_name = root.name + + for h5_file in root.rglob("*.h5"): + match = PATTERN.search(h5_file.name) + if not match: + continue + + node_id = match.group(1) + timestamp = int(match.group(2)) + + # Déterminer le type (data ou aux) + file_type = "data" if "_data_" in h5_file.name else "aux" if "_aux_" in h5_file.name else "unknown" + + # Extraire le channel si présent + ch_match = re.search(r'_ch(\d+)_', h5_file.name) + channel = f"ch{ch_match.group(1)}" if ch_match else "?" + + file_size = h5_file.stat().st_size + + inventory[folder_name][node_id].append({ + 'timestamp': timestamp, + 'datetime': datetime.fromtimestamp(timestamp), + 'type': file_type, + 'channel': channel, + 'filename': h5_file.name, + 'size': file_size + }) + + total_files += 1 + total_size += file_size + nodes_set.add(node_id) + timestamps_set.add(timestamp) + + # Rapport par dossier + print(f"\n{'DOSSIER':<15} {'NODES':<10} {'FICHIERS':<10} {'TAILLE':<15}") + print("-" * 50) + + for folder in sorted(inventory.keys()): + folder_data = inventory[folder] + n_nodes = len(folder_data) + n_files = sum(len(files) for files in folder_data.values()) + folder_size = sum(f['size'] for files in folder_data.values() for f in files) + print(f"{folder:<15} {n_nodes:<10} {n_files:<10} {folder_size / 1e9:.2f} GB") + + # Stats globales + print("\n" + "=" * 70) + print("STATISTIQUES GLOBALES") + print("=" * 70) + print(f"Fichiers H5 totaux: {total_files}") + print(f"Taille totale: {total_size / 1e9:.2f} GB") + print(f"Nodes uniques: {len(nodes_set)}") + + # Plage temporelle + if timestamps_set: + min_ts = min(timestamps_set) + max_ts = max(timestamps_set) + print(f"\nPlage temporelle des données:") + print(f" Début: {datetime.fromtimestamp(min_ts)} (timestamp: {min_ts})") + print(f" Fin: {datetime.fromtimestamp(max_ts)} (timestamp: {max_ts})") + + # Détail par node (top 20) + print("\n" + "=" * 70) + print("DETAIL PAR NODE (nodes avec le plus de fichiers)") + print("=" * 70) + + # Agréger par node + node_stats = defaultdict(lambda: {'files': 0, 'size': 0, 'timestamps': set(), 'folders': set()}) + + for folder, folder_data in inventory.items(): + for node_id, files in folder_data.items(): + node_stats[node_id]['files'] += len(files) + node_stats[node_id]['size'] += sum(f['size'] for f in files) + node_stats[node_id]['timestamps'].update(f['timestamp'] for f in files) + node_stats[node_id]['folders'].add(folder) + + # Trier par nombre de fichiers + sorted_nodes = sorted(node_stats.items(), key=lambda x: x[1]['files'], reverse=True) + + print(f"\n{'NODE':<8} {'FICHIERS':<10} {'TAILLE':<12} {'DATES':<25} {'DOSSIERS'}") + print("-" * 90) + + for node_id, stats in sorted_nodes[:30]: + ts_list = sorted(stats['timestamps']) + if ts_list: + date_range = f"{datetime.fromtimestamp(ts_list[0]).strftime('%Y-%m-%d %H:%M')} -> {datetime.fromtimestamp(ts_list[-1]).strftime('%H:%M')}" + else: + date_range = "N/A" + + folders = ", ".join(sorted(stats['folders'])) + print(f"b{node_id:<7} {stats['files']:<10} {stats['size']/1e6:.1f} MB {date_range:<25} {folders}") + + # Dates uniques (jours) + print("\n" + "=" * 70) + print("JOURS DE DONNEES DISPONIBLES (basé sur timestamps)") + print("=" * 70) + + days = set() + for ts in timestamps_set: + days.add(datetime.fromtimestamp(ts).strftime('%Y-%m-%d')) + + for day in sorted(days): + # Compter les fichiers pour ce jour + day_files = sum(1 for ts in timestamps_set + if datetime.fromtimestamp(ts).strftime('%Y-%m-%d') == day) + print(f" {day}: ~{day_files} timestamps uniques") + + +if __name__ == '__main__': + main() diff --git a/scripts/migrate_all.py b/scripts/migrate_all.py new file mode 100644 index 0000000..c1d85e6 --- /dev/null +++ b/scripts/migrate_all.py @@ -0,0 +1,45 @@ +import json, psycopg2, os +from pathlib import Path +from migrate_to_db import migrate_file + +INDEX_PATH = "/mnt/kingston/seismic_webapp/data/index.json" +DB_URL = "postgresql://postgres:seismic_pass@db:5432/seismic_data" + +def update_status(processed, total, current): + try: + conn = psycopg2.connect(DB_URL) + cur = conn.cursor() + cur.execute("UPDATE migration_status SET processed_files = %s, total_files = %s, current_file = %s, last_update = NOW() WHERE id = 1", (processed, total, current)) + conn.commit() + cur.close() + conn.close() + except Exception as e: + print(f"Status update error: {e}") + +def main(): + with open(INDEX_PATH, 'r') as f: + index = json.load(f) + + nodes = index.get('nodes', {}) + all_files = [] + for nid, node in nodes.items(): + for f in node.get('files', []): + if '_data_' in f['path']: + all_files.append((nid, f)) + + total = len(all_files) + print(f"Starting migration for {total} files...") + + for i, (nid, f) in enumerate(all_files): + filename = os.path.basename(f['path']) + update_status(i, total, filename) + try: + # Migration de 1h de chaque fichier + migrate_file(f['path'], nid, f.get('channel', 'ch0'), duration_sec=3600) + except Exception as e: + print(f"Error migrating {filename}: {e}") + + update_status(total, total, "Terminé") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/scripts/migrate_to_db.py b/scripts/migrate_to_db.py new file mode 100644 index 0000000..35384dd --- /dev/null +++ b/scripts/migrate_to_db.py @@ -0,0 +1,53 @@ +import h5py +import numpy as np +import psycopg2 +from psycopg2.extras import execute_values +from datetime import datetime, timezone, timedelta +import os +from tqdm import tqdm + +DB_URL = "postgresql://postgres:seismic_pass@db:5432/seismic_data" + +def fix_path(p): + p = p.replace('\\', '/') + if p.startswith('F:/'): return '/mnt/kingston/' + p[3:] + if p.startswith('E:/'): return '/mnt/data_sdb1/' + p[3:] + return p + +def migrate_file(h5_path, node_id, channel, start_offset_sec=0, duration_sec=3600): + h5_path = fix_path(h5_path) + conn = psycopg2.connect(DB_URL) + cur = conn.cursor() + + with h5py.File(h5_path, 'r') as f: + ds = f['adc_values'] + start_ts = int(ds.attrs['timestamp']) + # On calcule le début réel + actual_start = start_ts + start_offset_sec + start_idx = start_offset_sec * 200 + end_idx = start_idx + (duration_sec * 200) + + data = ds[start_idx:end_idx] + print(f"Migrating {len(data)} samples...") + + # Préparation des tuples pour insertion par lots + batch_size = 10000 + for i in range(0, len(data), batch_size): + batch = data[i:i+batch_size] + values = [] + for j, val in enumerate(batch): + ts = datetime.fromtimestamp(actual_start + (i + j) / 200, tz=timezone.utc) + values.append((ts, node_id, channel, float(val))) + + execute_values(cur, "INSERT INTO adc_samples (time, node_id, channel, value) VALUES %s", values) + conn.commit() + + cur.close() + conn.close() + print("Done.") + +if __name__ == "__main__": + # Test sur Node 193, 1er septembre (Julian 245), 10 minutes + # On cherche un fichier du node 193 + import sys + migrate_file(sys.argv[1], sys.argv[2], sys.argv[3], duration_sec=600) diff --git a/scripts/precompute_all.py b/scripts/precompute_all.py new file mode 100644 index 0000000..acc3570 --- /dev/null +++ b/scripts/precompute_all.py @@ -0,0 +1,62 @@ +import json, sys, os, numpy as np, h5py, re +from pathlib import Path +from datetime import datetime, timedelta +from tqdm import tqdm + +INDEX_PATH = Path("/mnt/kingston/seismic_webapp/data/index.json") +OUTPUT_DIR = Path("/mnt/kingston/seismic_webapp/data/rms_cache") +SAMPLE_RATE = 200 + +def fix_path(p): + p = p.replace('\\', '/') + if p.startswith('F:/'): return '/mnt/kingston/' + p[3:] + if p.startswith('E:/'): return '/mnt/data_sdb1/' + p[3:] + return p + +def compute_rms(h5_path): + h5_path = fix_path(h5_path) + if not os.path.exists(h5_path): return None + try: + # Extraire le timestamp réel du nom de fichier (Julian day) + match = re.search(r'auto_(\d+)_(\d{6})_b', os.path.basename(h5_path)) + if not match: return None + julian, time_str = int(match.group(1)), match.group(2) + h, m, s = int(time_str[:2]), int(time_str[2:4]), int(time_str[4:6]) + start_ts = int(datetime(2020, 1, 1).timestamp() + (julian - 1) * 86400 + h * 3600 + m * 60 + s) + + with h5py.File(h5_path, 'r') as f: + ds = f['adc_values'] + samples = ds[0:5000] + rms = float(np.sqrt(np.mean(samples.astype(np.float64)**2))) + return [{'ts': start_ts, 'rms': rms}] + except: return None + +def main(): + with open(INDEX_PATH, 'r') as f: index = json.load(f) + nodes = index.get('nodes', {}) + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + for date in index['dates']: + channel = "ch0" + output_file = OUTPUT_DIR / f"rms_{{date}}_{{channel}}.json" + print(f"Processing {date}...") + results = {} + for nid, node in tqdm(nodes.items(), desc=f"Nodes {date}"): + files = node.get('files', []) + # Filtrer les fichiers par Julian Day correspondant à la date + dt = datetime.strptime(date, '%Y-%m-%d') + target_julian = dt.timetuple().tm_yday + + target = next((f for f in files if f['julian'] == target_julian and f'_{{channel}}_' in f['path']), None) + if not target and files: + target = next((f for f in files if f['julian'] == target_julian), None) + + if target: + data = compute_rms(target['path']) + if data: results[nid] = data + + if results: + with open(output_file, 'w') as f: + json.dump({'date':date, 'channel':channel, 'nodes':results}, f) + +if __name__ == '__main__': main() \ No newline at end of file diff --git a/scripts/precompute_rms.py b/scripts/precompute_rms.py new file mode 100755 index 0000000..9445f58 --- /dev/null +++ b/scripts/precompute_rms.py @@ -0,0 +1,189 @@ +""" +Pré-calcul des valeurs RMS ADC pour tous les nodes. +Génère un fichier JSON avec les RMS à intervalles réguliers pour une lecture rapide. +""" + +import json +import sys +from pathlib import Path +from datetime import datetime +from typing import Dict, List, Any +import numpy as np +import h5py +from tqdm import tqdm + +# Configuration +SAMPLE_RATE = 200 # Hz +RMS_INTERVAL_SEC = 60 # Calculer RMS toutes les 60 secondes (plus rapide) +RMS_WINDOW_SEC = 5 # Fenêtre de calcul RMS (5 secondes = 1000 samples) + +INDEX_PATH = Path(r"F:\seismic_webapp\data\index.json") +OUTPUT_DIR = Path(r"F:\seismic_webapp\data\rms_cache") + + +def compute_rms_for_file(h5_path: str, interval_sec: int = RMS_INTERVAL_SEC, window_sec: int = RMS_WINDOW_SEC, max_duration_sec: int = 3600) -> List[Dict]: + """ + Calcule les valeurs RMS à intervalles réguliers pour un fichier HDF5. + Retourne une liste de {timestamp, rms} + + max_duration_sec: Limite à traiter (en secondes) pour accélérer + """ + results = [] + + try: + with h5py.File(h5_path, 'r') as f: + if 'adc_values' not in f: + return results + + dataset = f['adc_values'] + total_samples = dataset.shape[0] + + # Récupérer le timestamp de début + start_ts = None + if 'timestamp' in dataset.attrs: + start_ts = int(dataset.attrs['timestamp']) + + if start_ts is None: + return results + + # Calculer RMS à intervalles réguliers + window_samples = window_sec * SAMPLE_RATE + interval_samples = interval_sec * SAMPLE_RATE + + # Limiter la durée pour accélérer + max_samples = min(total_samples, max_duration_sec * SAMPLE_RATE) + + for idx in range(0, max_samples - window_samples, interval_samples): + # Lire uniquement la fenêtre nécessaire + samples = dataset[idx:idx + window_samples] + + # Calculer RMS + rms = float(np.sqrt(np.mean(samples.astype(np.float64) ** 2))) + + # Timestamp pour ce point + ts = start_ts + (idx // SAMPLE_RATE) + + results.append({ + 'ts': ts, + 'rms': rms + }) + + except Exception as e: + print(f"Erreur lecture {h5_path}: {e}") + + return results + + +def precompute_for_date(index: Dict, date: str, channel: str = 'ch0') -> Dict[str, List[Dict]]: + """ + Pré-calcule les RMS pour tous les nodes pour une date donnée. + Retourne {node_id: [{ts, rms}, ...]} + """ + results = {} + + # Trouver tous les nodes avec données pour cette date + nodes_with_data = [] + for node_id, node in index['nodes'].items(): + if node.get('dates') and date in node['dates']: + nodes_with_data.append((node_id, node['dates'][date])) + + print(f"Traitement de {len(nodes_with_data)} nodes pour {date}, canal {channel}") + + for node_id, files in tqdm(nodes_with_data, desc=f"Date {date}"): + # Trouver le fichier pour le canal demandé (priorité aux fichiers "data") + channel_pattern = f'_{channel}_' + target_file = None + + for f in files: + if channel_pattern in f['path'] and '_data_' in f['path']: + target_file = f + break + + if not target_file: + for f in files: + if channel_pattern in f['path']: + target_file = f + break + + if not target_file: + continue + + # Calculer les RMS + rms_data = compute_rms_for_file(target_file['path']) + + if rms_data: + results[node_id] = rms_data + + return results + + +def main(): + import argparse + + parser = argparse.ArgumentParser(description='Pré-calcul des RMS ADC') + parser.add_argument('--date', help='Date spécifique (ex: 2020-09-02)') + parser.add_argument('--channel', default='ch0', help='Canal (ch0-ch3)') + parser.add_argument('--all', action='store_true', help='Traiter toutes les dates/canaux') + args = parser.parse_args() + + # Charger l'index + if not INDEX_PATH.exists(): + print(f"Index non trouvé: {INDEX_PATH}") + sys.exit(1) + + with open(INDEX_PATH, 'r') as f: + index = json.load(f) + + print(f"Index chargé: {len(index['nodes'])} nodes, {len(index['dates'])} dates") + + # Créer le dossier de sortie + OUTPUT_DIR.mkdir(parents=True, exist_ok=True) + + # Déterminer quoi traiter + if args.date: + dates_to_process = [args.date] + channels_to_process = [args.channel] + elif args.all: + dates_to_process = index['dates'] + channels_to_process = ['ch0', 'ch1', 'ch2', 'ch3'] + else: + # Par défaut, traiter la première date disponible, canal ch0 + dates_to_process = [index['dates'][0]] if index['dates'] else [] + channels_to_process = ['ch0'] + + for date in dates_to_process: + for channel in channels_to_process: + output_file = OUTPUT_DIR / f"rms_{date}_{channel}.json" + + # Skip si déjà calculé + if output_file.exists(): + print(f"Skip {output_file.name} (déjà existant)") + continue + + print(f"\n=== Traitement {date} - {channel} ===") + + results = precompute_for_date(index, date, channel) + + if results: + # Sauvegarder + output_data = { + 'date': date, + 'channel': channel, + 'interval_sec': RMS_INTERVAL_SEC, + 'window_sec': RMS_WINDOW_SEC, + 'nodes': results, + 'generated_at': datetime.now().isoformat() + } + + with open(output_file, 'w') as f: + json.dump(output_data, f) + + print(f"Sauvegardé: {output_file.name} ({len(results)} nodes)") + else: + print(f"Aucune donnée pour {date} - {channel}") + + print("\n=== Terminé ===") + + +if __name__ == '__main__': + main() diff --git a/scripts/rebuild_h5_db.py b/scripts/rebuild_h5_db.py new file mode 100755 index 0000000..615ff7a --- /dev/null +++ b/scripts/rebuild_h5_db.py @@ -0,0 +1,83 @@ +#!/usr/bin/env python3 +"""Rebuild H5 metadata database for the seismic viewer.""" +import os +import re +import sqlite3 +from datetime import datetime + +H5_ROOTS = [ + '/mnt/data_sdb1', + '/mnt/kingston' +] +DB_PATH = '/home/floppyrj45/docker/seismic-nodes-viewer/h5_data.db' +FILE_PATTERN = re.compile(r'b(\d+)_.*_ch(\d+)') + +SCHEMA = [ + 'CREATE TABLE IF NOT EXISTS positions (node_code INTEGER PRIMARY KEY, has_data BOOLEAN, has_aux BOOLEAN, sample_count INTEGER, last_seen TEXT)', + 'CREATE TABLE IF NOT EXISTS files (id INTEGER PRIMARY KEY AUTOINCREMENT, path TEXT, node_code INTEGER, channel INTEGER, dataset TEXT, size INTEGER, mtime INTEGER, FOREIGN KEY(node_code) REFERENCES positions(node_code))', + 'CREATE INDEX IF NOT EXISTS idx_files_node ON files(node_code)' +] + + +def rebuild_db(): + conn = sqlite3.connect(DB_PATH) + cur = conn.cursor() + + for stmt in SCHEMA: + cur.execute(stmt) + + cur.execute('DELETE FROM files') + cur.execute('DELETE FROM positions') + + files_counter = 0 + summary = {} + + for root in H5_ROOTS: + for dirpath, _, filenames in os.walk(root): + for filename in filenames: + if not filename.endswith('.h5'): + continue + filepath = os.path.join(dirpath, filename) + match = FILE_PATTERN.search(filename) + if not match: + continue + + node_code = int(match.group(1)) + channel = int(match.group(2)) + dataset = 'aux' if 'aux' in filename else 'data' + stat = os.stat(filepath) + mtime = int(stat.st_mtime) + size = stat.st_size + + summary.setdefault(node_code, {'data': False, 'aux': False, 'count': 0, 'last': 0}) + summary[node_code]['count'] += 1 + summary[node_code]['last'] = max(summary[node_code]['last'], mtime) + if dataset == 'data': + summary[node_code]['data'] = True + else: + summary[node_code]['aux'] = True + + cur.execute( + 'INSERT INTO files (path, node_code, channel, dataset, size, mtime) VALUES (?, ?, ?, ?, ?, ?)', + (filepath, node_code, channel, dataset, size, mtime) + ) + files_counter += 1 + + print(f"Indexed {files_counter} H5 files") + + for node_code, stats in summary.items(): + has_data = 1 if stats['data'] else 0 + has_aux = 1 if stats['aux'] else 0 + last_seen = datetime.utcfromtimestamp(stats['last']).isoformat() + cur.execute( + 'INSERT INTO positions (node_code, has_data, has_aux, sample_count, last_seen) VALUES (?, ?, ?, ?, ?)', + (node_code, has_data, has_aux, stats['count'], last_seen) + ) + + conn.commit() + conn.close() + print(f"Rebuilt DB at {DB_PATH} with {len(summary)} positions") + + +if __name__ == '__main__': + rebuild_db() diff --git a/scripts/rebuild_h5_db_v2.py b/scripts/rebuild_h5_db_v2.py new file mode 100755 index 0000000..e42260d --- /dev/null +++ b/scripts/rebuild_h5_db_v2.py @@ -0,0 +1,104 @@ +#!/usr/bin/env python3 +"""Rebuild H5 metadata database - V2 (capture ALL patterns).""" +import os +import re +import sqlite3 +from datetime import datetime + +H5_ROOTS = ['/mnt/data_sdb1', '/mnt/kingston'] +DB_PATH = '/home/floppyrj45/docker/seismic-nodes-viewer/h5_data.db' + +# Pattern plus permissif - capture TOUS les b### +FILE_PATTERN = re.compile(r'b(\d+)') +CHANNEL_PATTERN = re.compile(r'ch(\d+)') + +SCHEMA = [ + 'CREATE TABLE IF NOT EXISTS positions (node_code INTEGER PRIMARY KEY, has_data BOOLEAN, has_aux BOOLEAN, sample_count INTEGER, last_seen TEXT)', + 'CREATE TABLE IF NOT EXISTS files (id INTEGER PRIMARY KEY AUTOINCREMENT, path TEXT, node_code INTEGER, channel INTEGER, dataset TEXT, size INTEGER, mtime INTEGER, FOREIGN KEY(node_code) REFERENCES positions(node_code))', + 'CREATE INDEX IF NOT EXISTS idx_files_node ON files(node_code)' +] + +def rebuild_db(): + conn = sqlite3.connect(DB_PATH) + cur = conn.cursor() + + for stmt in SCHEMA: + cur.execute(stmt) + + cur.execute('DELETE FROM files') + cur.execute('DELETE FROM positions') + + files_counter = 0 + summary = {} + + for root in H5_ROOTS: + for dirpath, _, filenames in os.walk(root): + for filename in filenames: + if not filename.endswith('.h5'): + continue + + filepath = os.path.join(dirpath, filename) + + # Extraire node_code + node_match = FILE_PATTERN.search(filename) + if not node_match: + continue + + node_code = int(node_match.group(1)) + + # Extraire channel (peut ne pas exister) + channel_match = CHANNEL_PATTERN.search(filename) + channel = int(channel_match.group(1)) if channel_match else -1 + + # Déterminer dataset (data vs aux) + dataset = 'aux' if 'aux' in filename else 'data' + + stat = os.stat(filepath) + mtime = int(stat.st_mtime) + size = stat.st_size + + # Mise à jour summary + summary.setdefault(node_code, {'data': False, 'aux': False, 'count': 0, 'last': 0}) + summary[node_code]['count'] += 1 + summary[node_code]['last'] = max(summary[node_code]['last'], mtime) + if dataset == 'data': + summary[node_code]['data'] = True + else: + summary[node_code]['aux'] = True + + # Insertion fichier + cur.execute( + 'INSERT INTO files (path, node_code, channel, dataset, size, mtime) VALUES (?, ?, ?, ?, ?, ?)', + (filepath, node_code, channel, dataset, size, mtime) + ) + files_counter += 1 + + print(f"✓ Indexed {files_counter} H5 files") + + # Insertion positions + for node_code, stats in summary.items(): + has_data = 1 if stats['data'] else 0 + has_aux = 1 if stats['aux'] else 0 + last_seen = datetime.fromtimestamp(stats['last']).isoformat() + cur.execute( + 'INSERT INTO positions (node_code, has_data, has_aux, sample_count, last_seen) VALUES (?, ?, ?, ?, ?)', + (node_code, has_data, has_aux, stats['count'], last_seen) + ) + + conn.commit() + + # Stats finales + total_positions = len(summary) + with_data = sum(1 for s in summary.values() if s['data']) + with_aux = sum(1 for s in summary.values() if s['aux']) + + print(f"✓ Rebuilt DB: {total_positions} positions total") + print(f" • With data files: {with_data}") + print(f" • With aux files: {with_aux}") + print(f" • Both: {sum(1 for s in summary.values() if s['data'] and s['aux'])}") + print(f" • Coverage: {(with_data/205*100):.1f}% (assuming 205 planned)") + + conn.close() + +if __name__ == '__main__': + rebuild_db() diff --git a/scripts/rebuild_h5_db_v3.py b/scripts/rebuild_h5_db_v3.py new file mode 100755 index 0000000..e6edfb9 --- /dev/null +++ b/scripts/rebuild_h5_db_v3.py @@ -0,0 +1,137 @@ +#!/usr/bin/env python3 +"""Rebuild H5 metadata database - V3 (include expected positions from CSV).""" +import os +import re +import csv +import sqlite3 +from datetime import datetime + +H5_ROOTS = ['/mnt/data_sdb1', '/mnt/kingston'] +CSV_PATH = '/mnt/kingston/Copie de SETE_AUV_DARFV4-Copier(1).csv' +DB_PATH = '/home/floppyrj45/docker/seismic-nodes-viewer/h5_data.db' + +FILE_PATTERN = re.compile(r'b(\d+)') +CHANNEL_PATTERN = re.compile(r'ch(\d+)') + +SCHEMA = [ + 'CREATE TABLE IF NOT EXISTS positions (node_code INTEGER PRIMARY KEY, has_data BOOLEAN, has_aux BOOLEAN, sample_count INTEGER, last_seen TEXT, expected BOOLEAN)', + 'CREATE TABLE IF NOT EXISTS files (id INTEGER PRIMARY KEY AUTOINCREMENT, path TEXT, node_code INTEGER, channel INTEGER, dataset TEXT, size INTEGER, mtime INTEGER, FOREIGN KEY(node_code) REFERENCES positions(node_code))', + 'CREATE INDEX IF NOT EXISTS idx_files_node ON files(node_code)' +] + +def rebuild_db(): + conn = sqlite3.connect(DB_PATH) + cur = conn.cursor() + + for stmt in SCHEMA: + cur.execute(stmt) + + cur.execute('DELETE FROM files') + cur.execute('DELETE FROM positions') + + # 1. Charger les positions attendues depuis le CSV + expected_nodes = set() + try: + with open(CSV_PATH, 'r', encoding='utf-8-sig') as f: + reader = csv.DictReader(f) + for row in reader: + node_code = row.get('NodeCode', '').strip() + if node_code and node_code.isdigit(): + expected_nodes.add(int(node_code)) + print(f"✓ Loaded {len(expected_nodes)} expected positions from CSV") + except Exception as e: + print(f"⚠ CSV not found or error: {e}") + print(" Continuing with file scan only...") + + # 2. Scanner les fichiers H5 + files_counter = 0 + found_nodes = {} + + for root in H5_ROOTS: + for dirpath, _, filenames in os.walk(root): + for filename in filenames: + if not filename.endswith('.h5'): + continue + + filepath = os.path.join(dirpath, filename) + + node_match = FILE_PATTERN.search(filename) + if not node_match: + continue + + node_code = int(node_match.group(1)) + channel_match = CHANNEL_PATTERN.search(filename) + channel = int(channel_match.group(1)) if channel_match else -1 + dataset = 'aux' if 'aux' in filename else 'data' + + stat = os.stat(filepath) + mtime = int(stat.st_mtime) + size = stat.st_size + + found_nodes.setdefault(node_code, {'data': False, 'aux': False, 'count': 0, 'last': 0}) + found_nodes[node_code]['count'] += 1 + found_nodes[node_code]['last'] = max(found_nodes[node_code]['last'], mtime) + if dataset == 'data': + found_nodes[node_code]['data'] = True + else: + found_nodes[node_code]['aux'] = True + + cur.execute( + 'INSERT INTO files (path, node_code, channel, dataset, size, mtime) VALUES (?, ?, ?, ?, ?, ?)', + (filepath, node_code, channel, dataset, size, mtime) + ) + files_counter += 1 + + print(f"✓ Indexed {files_counter} H5 files") + print(f"✓ Found {len(found_nodes)} positions with data") + + # 3. Créer les entrées pour TOUTES les positions (attendues + trouvées) + all_nodes = expected_nodes | set(found_nodes.keys()) + + for node_code in all_nodes: + is_expected = node_code in expected_nodes + + if node_code in found_nodes: + stats = found_nodes[node_code] + has_data = 1 if stats['data'] else 0 + has_aux = 1 if stats['aux'] else 0 + last_seen = datetime.fromtimestamp(stats['last']).isoformat() + sample_count = stats['count'] + else: + # Position attendue mais sans données + has_data = 0 + has_aux = 0 + last_seen = None + sample_count = 0 + + cur.execute( + 'INSERT INTO positions (node_code, has_data, has_aux, sample_count, last_seen, expected) VALUES (?, ?, ?, ?, ?, ?)', + (node_code, has_data, has_aux, sample_count, last_seen, 1 if is_expected else 0) + ) + + conn.commit() + + # Stats finales + cur.execute('SELECT COUNT(*) FROM positions') + total = cur.fetchone()[0] + + cur.execute('SELECT COUNT(*) FROM positions WHERE has_data = 1') + with_data = cur.fetchone()[0] + + cur.execute('SELECT COUNT(*) FROM positions WHERE expected = 1') + expected_count = cur.fetchone()[0] + + cur.execute('SELECT COUNT(*) FROM positions WHERE expected = 1 AND has_data = 0') + missing = cur.fetchone()[0] + + print(f"\n📊 Database Summary:") + print(f" • Total positions in DB: {total}") + print(f" • Expected (from CSV): {expected_count}") + print(f" • With H5 data: {with_data}") + print(f" • Missing (expected but no data): {missing}") + print(f" • Coverage: {(with_data/expected_count*100 if expected_count else 0):.1f}%") + + conn.close() + +if __name__ == '__main__': + rebuild_db() diff --git a/scripts/rebuild_index.py b/scripts/rebuild_index.py new file mode 100755 index 0000000..7552a95 --- /dev/null +++ b/scripts/rebuild_index.py @@ -0,0 +1,114 @@ +#!/usr/bin/env python3 +""" +Reconstruit l'index.json de la webapp à partir de l'inventaire complet. +Prend en compte tous les fichiers HDF5 sur tous les disques. +""" + +import json +from pathlib import Path +from datetime import datetime +from collections import defaultdict + +def main(): + # Charger l'inventaire + inv_path = Path(r'F:\seismic_webapp\inventory.json') + inv = json.load(open(inv_path)) + print(f"Inventaire charge: {len(inv)} fichiers") + + # Charger l'index existant pour garder les positions + idx_path = Path(r'F:\seismic_webapp\data\index.json') + old_idx = json.load(open(idx_path)) + print(f"Index existant: {len(old_idx.get('nodes', {}))} nodes") + + # Construire le nouvel index + nodes = {} + + # Copier les positions existantes + for node_id, node_data in old_idx.get('nodes', {}).items(): + nodes[node_id] = { + 'position': node_data.get('position'), + 'dates': {}, + 'hasDates': False + } + + # Ajouter les fichiers de l'inventaire + files_added = 0 + for f in inv: + bumper_id = f['bumper_id'] + if not bumper_id: + continue + + # Créer le node s'il n'existe pas + if bumper_id not in nodes: + nodes[bumper_id] = { + 'position': None, + 'dates': {}, + 'hasDates': False + } + + # Calculer la date depuis l'epoch + if f['epoch_time']: + dt = datetime.fromtimestamp(f['epoch_time']) + date_str = dt.strftime('%Y-%m-%d') + else: + continue + + # Ajouter à la liste des dates + if date_str not in nodes[bumper_id]['dates']: + nodes[bumper_id]['dates'][date_str] = [] + + # Déterminer les canaux (extraire du nom de fichier) + channel = f['channel'] + channels = [channel] if channel else [] + + # Ajouter le fichier + file_info = { + 'path': f['filepath'], + 'timestamp': f['epoch_time'], + 'channels': channels, + 'size_bytes': 0 # On n'a pas cette info + } + + # Éviter les doublons + existing_paths = [fi['path'] for fi in nodes[bumper_id]['dates'][date_str]] + if f['filepath'] not in existing_paths: + nodes[bumper_id]['dates'][date_str].append(file_info) + files_added += 1 + + # Marquer les nodes qui ont des dates + for node_id, node_data in nodes.items(): + node_data['hasDates'] = len(node_data['dates']) > 0 + + # Statistiques + nodes_with_data = sum(1 for n in nodes.values() if n['hasDates']) + total_files = sum( + len(files) + for n in nodes.values() + for files in n['dates'].values() + ) + + print(f"\nNouvel index:") + print(f" Nodes total: {len(nodes)}") + print(f" Nodes avec donnees: {nodes_with_data}") + print(f" Fichiers indexes: {total_files}") + + # Sauvegarder + new_idx = { + 'nodes': nodes, + 'sampleRateHz': old_idx.get('sampleRateHz', 200), + 'generated': datetime.now().isoformat() + } + + # Backup de l'ancien + backup_path = idx_path.with_suffix('.json.bak') + with open(backup_path, 'w') as f: + json.dump(old_idx, f) + print(f"\nBackup sauvegarde: {backup_path}") + + # Sauvegarder le nouveau + with open(idx_path, 'w') as f: + json.dump(new_idx, f, indent=2) + print(f"Nouvel index sauvegarde: {idx_path}") + +if __name__ == '__main__': + main() diff --git a/scripts/show_stats.py b/scripts/show_stats.py new file mode 100755 index 0000000..6a58a52 --- /dev/null +++ b/scripts/show_stats.py @@ -0,0 +1,39 @@ +import json +from collections import defaultdict + +d = json.load(open(r'F:\seismic_webapp\inventory.json')) + +by_channel = defaultdict(lambda: {'data': 0, 'aux': 0, 'bumpers': set()}) +for f in d: + ch = f['channel'] or 'unknown' + if f['file_type'] == 'data': + by_channel[ch]['data'] += 1 + else: + by_channel[ch]['aux'] += 1 + if f['bumper_id']: + by_channel[ch]['bumpers'].add(f['bumper_id']) + +print('=== RESUME PAR CANAL ===') +print('Canal DATA AUX Bumpers') +print('-' * 35) +for ch in ['ch0', 'ch1', 'ch2', 'ch3', 'ch5', 'ch6', 'ch7', 'ch15', 'unknown']: + if ch in by_channel: + s = by_channel[ch] + total = s['data'] + s['aux'] + print(f'{ch:8} {s["data"]:4} {s["aux"]:4} {len(s["bumpers"]):3}') + +# Stats globales +total_data = sum(s['data'] for s in by_channel.values()) +total_aux = sum(s['aux'] for s in by_channel.values()) +all_bumpers = set() +for s in by_channel.values(): + all_bumpers.update(s['bumpers']) + +print('-' * 35) +print(f'TOTAL {total_data:4} {total_aux:4} {len(all_bumpers):3}') + +errors = [f for f in d if f['error']] +print(f'\nErreurs de lecture: {len(errors)} fichiers') +if errors: + for e in errors[:5]: + print(f' - {e["filename"][:50]}...') diff --git a/scripts/test_hdf5.py b/scripts/test_hdf5.py new file mode 100755 index 0000000..504abcc --- /dev/null +++ b/scripts/test_hdf5.py @@ -0,0 +1,31 @@ +import h5py +import numpy as np + +# Test file +filepath = r'F:\2020-09-22\data\auto_266_143513_b29_13_213605_data_rsn2648_seq1_ch0_1599039547.h5' + +with h5py.File(filepath, 'r') as f: + print("=== Structure du fichier ===") + print("Datasets:", list(f.keys())) + + if 'adc_values' in f: + d = f['adc_values'] + print("\n=== Dataset adc_values ===") + print("Shape:", d.shape) + print("Dtype:", d.dtype) + + print("\n=== Attributs du dataset ===") + for k, v in d.attrs.items(): + print(f" {k}: {v}") + + # Charger un échantillon + sample = d[:2000] + print("\n=== Statistiques (premiers 2000 samples) ===") + print("Min:", np.min(sample)) + print("Max:", np.max(sample)) + print("Mean:", np.mean(sample)) + print("Std:", np.std(sample)) + print("RMS:", np.sqrt(np.mean(sample**2))) + + print("\n=== Premiers 20 valeurs ===") + print(sample[:20]) diff --git a/simple_api.py b/simple_api.py new file mode 100644 index 0000000..200ec54 --- /dev/null +++ b/simple_api.py @@ -0,0 +1,201 @@ +#!/usr/bin/env python3 +from flask import Flask, jsonify, request +from flask_cors import CORS +import json +import h5py +import numpy as np +from pathlib import Path +from datetime import datetime + +app = Flask(__name__) +CORS(app) + +# Load index once at startup +with open('/data/index.json', 'r') as f: + INDEX = json.load(f) + +H5_DIR = Path('/data/h5') + +@app.route('/api/nodes', methods=['GET']) +def get_nodes(): + nodes_list = [] + for node_id, node_info in INDEX['nodes'].items(): + file_count = len(node_info.get('files', [])) + nodes_list.append({ + 'id': node_id, + 'position': node_info.get('position', {}), + 'file_count': file_count, + 'hasDates': file_count > 0 + }) + return jsonify({ + 'nodes': nodes_list, + 'sampleRateHz': 500 + }) + +@app.route('/api/dates', methods=['GET']) +def get_dates(): + return jsonify({'dates': INDEX['dates']}) + +@app.route('/api/migration-status', methods=['GET']) +def get_migration_status(): + """Status de la conversion RAW -> H5""" + total_files = 345 # Connu du projet + h5_files = list(H5_DIR.glob('*.h5')) + converted = len(h5_files) + + return jsonify({ + 'summary': { + 'total_files': total_files, + 'converted_files': converted, + 'percentage': round(converted / total_files * 100, 1), + 'status': 'in_progress' if converted < total_files else 'complete' + }, + 'h5_files_available': converted + }) + +@app.route('/api/rms-timeline', methods=['GET']) +def get_rms_timeline(): + """Timeline RMS pour un channel et une date donnés""" + date = request.args.get('date') + channel = request.args.get('channel', 'ch0') + + if not date: + return jsonify({'error': 'date parameter required'}), 400 + + # Chercher les fichiers H5 pour cette date + timeline = [] + for node_id, node_info in INDEX['nodes'].items(): + for file_info in node_info.get('files', []): + if file_info.get('date') == date: + # Pour l'instant, retourner des données mock + # TODO: Calculer le vrai RMS depuis les fichiers H5 + timeline.append({ + 'node_id': node_id, + 'timestamp': 0, + 'rms': 0 # À calculer depuis H5 + }) + + return jsonify({ + 'date': date, + 'channel': channel, + 'timeline': timeline + }) + +@app.route('/api/data', methods=['GET']) +def get_waveform_data(): + """Données waveform pour un node, date, channel, timestamp""" + node_id = request.args.get('node') + date = request.args.get('date') + channel = request.args.get('channel', 'ch0') + start = float(request.args.get('start', 0)) + duration = float(request.args.get('duration', 10)) + + if not node_id or not date: + return jsonify({'error': 'node and date required'}), 400 + + # Chercher le fichier H5 correspondant + node_info = INDEX['nodes'].get(node_id) + if not node_info: + return jsonify({'error': 'node not found'}), 404 + + h5_file = None + for file_info in node_info.get('files', []): + if file_info.get('date') == date: + h5_file = H5_DIR / file_info.get('filename', '') + break + + if not h5_file or not h5_file.exists(): + return jsonify({'error': 'H5 file not found'}), 404 + + try: + with h5py.File(h5_file, 'r') as f: + sample_rate = f['metadata'].attrs['sample_rate_hz'] + channel_num = int(channel.replace('ch', '').replace('CH', '')) + + # Lire les données calibrées + dataset = f[f'calibrated_data/channel_{channel_num + 1}'] + start_sample = int(start * sample_rate) + end_sample = int((start + duration) * sample_rate) + + # Limiter à la taille du dataset + end_sample = min(end_sample, dataset.shape[0]) + + if start_sample >= dataset.shape[0]: + return jsonify({'error': 'start time out of range'}), 400 + + data = dataset[start_sample:end_sample] + + # Calculer stats + rms = float(np.sqrt(np.mean(data ** 2))) + peak = float(np.max(np.abs(data))) + + return jsonify({ + 'node_id': node_id, + 'date': date, + 'channel': channel, + 'start': start, + 'duration': duration, + 'sample_rate': int(sample_rate), + 'data': data.tolist(), + 'stats': { + 'rms': rms, + 'peak': peak, + 'samples': len(data) + } + }) + + except Exception as e: + return jsonify({'error': str(e)}), 500 + +@app.route('/api/h5/files', methods=['GET']) +def get_h5_files(): + """Liste des fichiers H5 disponibles avec métadonnées""" + files = [] + for h5_path in H5_DIR.glob('*.h5'): + try: + with h5py.File(h5_path, 'r') as f: + files.append({ + 'filename': h5_path.name, + 'size_mb': round(h5_path.stat().st_size / 1024 / 1024, 2), + 'duration_sec': int(f['metadata'].attrs.get('duration_sec', 0)), + 'sample_rate': int(f['metadata'].attrs.get('sample_rate_hz', 500)), + 'channels': int(f['metadata'].attrs.get('n_channels', 4)) + }) + except: + pass + + return jsonify({'files': files, 'count': len(files)}) + +@app.route('/api/h5/coverage', methods=['GET']) +def get_h5_coverage(): + """Matrice de couverture nodes x dates""" + coverage = {} + for node_id, node_info in INDEX['nodes'].items(): + node_dates = [f['date'] for f in node_info.get('files', []) if 'date' in f] + coverage[node_id] = node_dates + + return jsonify({ + 'coverage': coverage, + 'total_nodes': len(coverage), + 'total_dates': len(INDEX['dates']) + }) + +@app.route('/api/chat', methods=['POST']) +def chat(): + """Endpoint chat assistant (mock)""" + data = request.json + message = data.get('message', '') + + return jsonify({ + 'response': f"[Mock] Vous avez dit: {message}", + 'timestamp': datetime.now().isoformat() + }) + +@app.route('/health', methods=['GET']) +def health(): + return jsonify({'status': 'ok', 'nodes': len(INDEX['nodes']), 'dates': len(INDEX['dates'])}) + +if __name__ == '__main__': + print(f"Loaded {len(INDEX['nodes'])} nodes, {len(INDEX['dates'])} dates") + print(f"H5 directory: {H5_DIR}") + app.run(host='0.0.0.0', port=3004) diff --git a/static/SETE_DARF_V4.csv b/static/SETE_DARF_V4.csv new file mode 100644 index 0000000..66a8e91 --- /dev/null +++ b/static/SETE_DARF_V4.csv @@ -0,0 +1,206 @@ +1,2,,Sete-Pilot-20200903.csv,,6,7,8,9,10,11,12,,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,,,,,,,,,47,,,All commands failed,-10,,,,,,,,,,,,,,,,,,97,196,1 +,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Comment_ori,,,,,,,,,,,,,,,,,,,,, +,FAUX,,,,,,,,Deployment,,,,,Check FIX,Recovery,,,,,Check FIX,,,,,,,,,,,,,,,,,,,,Last message from position log,,,,,,,,,,,145,,,,,,,,Fished,-10,,,,,,,,,,,,,,,,,,,, +concat,Line,Point,NodeCode,Index,Preplot Easting,Preplot Northing,Preplot Depth,Aslaid Time,Aslaid Easting,Aslaid Northing,Aslaid Depth,,Aslaid Tide Offset,Aslaid Azimuth,Recovered Time,Recovered Easting,Recovered Northing,Recovered Depth,Recovered Tide Offset,Recovered Azimuth,PreplotToAslaidDistance,PreplotToAslaidBearing,AslaidToRecoveredDistance,AslaidToRecoveredBearing,RecoveredToPreplotDistance,RecoveredToPreplotBearing,PreplotToAslaidAlongTrack,PreplotToAslaidCrossTrack,RecoveredToPreplotAlongTrack,RecoveredToPreplotCrossTrack,AslaidToRecoveredAlongTrack,AslaidToRecoveredCrossTrack,DeployedComments,RecoveredComments,Flag,Date,JD,Time,JDTIME,time,X_Pos,Y_Pos,Status,File,X_Comp,Y_Comp,Comment,comment_bis,duration,Comment_ori,log_download,date,comment_pickup,date sent onshore,,Comment,,,Fishermen,-20,,,,,,,,,,,,,,,,,,,, +10001,1000,5000,4,1,559867.24,4797453,0.00,2020-Sep-03 18:41:52.000,0,0,0,1000/5000,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:10:09""",559951.24,4797507.26,PMU-A,C:\SpiceRack\20200904\positions_log.csv,559869.849,4797451.921,In Gabia_1,,,In Gabia_1,OK,20200912,,,,20,,,Gabia missed,10,,,,,,,,,,,,,,,,,,,, +10002,1000,5004,10,1,559949.16,4797510.36,0.00,2020-Sep-03 18:41:52.000,0,0,0,1000/5004,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:10:51""",560035.89,4797566.14,LANDING,C:\SpiceRack\20200904\positions_log.csv,559950.057,4797509.16,In Gabia_1,,,In Gabia_1,OK,20200912,,,,20,,,In Gabia_1,20,,,,,,,,,,,,,,,,,,,, +10003,1000,5008,11,1,560031.07,4797567.72,0.00,2020-Sep-03 18:41:52.000,0,0,0,1000/5008,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:15:39""",560117.19,4797620.55,NULL,C:\SpiceRack\20200904\positions_log.csv,560035.816,4797565.643,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,In Gabia_2,20,,,,,,,,,,,,,,,,,,,, +10004,1000,5012,15,1,560112.99,4797625.07,0.00,2020-Sep-03 18:41:52.000,560116.82,4797621.72,37,1000/5012,0.0,147.40,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,,,,,,560115.915,4797622.84,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,In Gabia_3,20,,,,,,,,,,,,,,,,,,,, +10006,1000,5020,37,1,560276.82,4797739.79,0.00,2020-Sep-03 18:41:52.000,560284.01,4797736.15,35,1000/5020,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:39:33""",560367.98,4797796.99,LANDED,C:\SpiceRack\20200904\positions_log.csv,560281.716,4797739.475,In Gabia_2,,,In Gabia_2,OK,20200912,Eastern Egg HS,13-Sep,,20,,,In Gabia_4,20,,,,,,,,,,,,,,,,,,,, +10007,1000,5024,40,1,560358.73,4797797.15,0.00,2020-Sep-03 18:41:52.000,560367.98,4797796.99,36,1000/5024,0.0,141.70,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:48:23""",560441.57,4797848.22,NULL,C:\SpiceRack\20200904\positions_log.csv,560367.603,4797799.043,Surface,,,Surface,OK,20200912,,14-Sep,,10,,,in Gabia_5,20,,,,,,,,,,,,,,,,,,,, +10008,1000,5028,43,1,560440.65,4797854.5,0.00,2020-Sep-03 18:41:52.000,560439.27,4797850.52,-10,1000/5028,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:45:47""",560527.58,4797908.74,LANDED,C:\SpiceRack\20200904\positions_log.csv,560452.745,4797859.883,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,In Gabia_6,20,,,,,,,,,,,,,,,,,,,, +10009,1000,5032,44,1,560522.56,4797911.86,0.00,2020-Sep-03 18:41:52.000,560527.58,4797908.74,37,1000/5032,0.0,144.60,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:45:44""",560599.66,4797961.54,LANDED,C:\SpiceRack\20200904\positions_log.csv,560527.112,4797910.961,In Gabia_1,,,In Gabia_1,OK,20200912,,,,20,,,Manta_10484,-30,,,,,,,,,,,,,,,,,,,, +10010,1000,5036,45,1,560604.48,4797969.22,0.00,2020-Sep-03 18:41:52.000,560599.66,4797961.54,37,1000/5036,0.0,133.20,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:25:50""",560689.12,4798023.32,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560597.021,4797963.004,In Gabia_1,,,In Gabia_1,OK,20200912,Front truster HS,13-Sep,,20,,,Manta_12025,-30,,,,,,,,,,,,,,,,,,,, +10011,1000,5040,52,1,560686.39,4798026.58,0.00,2020-Sep-03 18:41:52.000,560687.96,4798024.23,35,1000/5040,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:27:20""",560773.34,4798084.4,LANDING,C:\SpiceRack\20200904\positions_log.csv,560687.314,4798026.735,Fishermen,,,Fishermen,OK,20200912,Fishing boat,13-Sep,,-20,,,Manta_1240,-30,,,,,,,,,,,,,,,,,,,, +10012,1000,5044,54,1,560768.31,4798083.93,0.00,2020-Sep-03 18:41:52.000,560773.34,4798084.4,37,1000/5044,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:28:52""",560853.11,4798142.13,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560771.925,4798086.655,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,Manta_12443,-30,,,,,,,,,,,,,,,,,,,, +10013,1000,5048,56,1,560850.22,4798141.29,0.00,2020-Sep-03 18:41:52.000,0,0,0,1000/5048,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:30:32""",560936.14,4798197.59,LANDING,C:\SpiceRack\20200904\positions_log.csv,560852.9,4798141.947,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,Manta_12614,-30,,,,,,,,,,,,,,,,,,,, +10014,1000,5052,63,1,560932.14,4798198.65,0.00,2020-Sep-03 18:41:52.000,560936.14,4798197.59,37,1000/5052,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:33:50""",561013.53,4798249.08,LANDED,C:\SpiceRack\20200904\positions_log.csv,560934.867,4798201.855,Fishermen,,,Fishermen,OK,20200913,Fishing boat,13-Sep,,-20,,,Manta_2753,-30,,,,,,,,,,,,,,,,,,,, +10015,1000,5056,67,1,561014.05,4798256.01,0.00,2020-Sep-03 18:41:52.000,561013.53,4798249.08,37,1000/5056,0.0,138.90,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:39:55""",561099.49,4798310.67,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561012.719,4798250.397,In Gabia_1,,,In Gabia_1,OK,20200914,,,,20,,,Manta_4071,-30,,,,,,,,,,,,,,,,,,,, +10016,1000,5060,72,1,561095.97,4798313.36,0.00,2020-Sep-03 18:41:52.000,561097.53,4798313.11,35,1000/5060,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:41:21""",561176.33,4798369.57,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561096.612,4798314.914,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,Navigation issue,-10,,,,,,,,,,,,,,,,,,,, +10017,1000,5064,73,1,561177.88,4798370.72,0.00,2020-Sep-03 18:41:52.000,561181.16,4798371.55,34,1000/5064,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:45:18""",561177.18,4798341.87,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561178.199,4798370.267,In Gabia_1,,,In Gabia_1,OK,20200912,,14-Sep,,20,,,No com,-10,,,,,,,,,,,,,,,,,,,, +10018,1000,5068,78,1,561259.8,4798428.08,0.00,2020-Sep-03 18:41:52.000,0,0,0,1000/5068,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:54:44""",561342.98,4798481.82,NULL,C:\SpiceRack\20200904\positions_log.csv,561180.452,4798342.119,ROV,ROV_20200914_01,0:29,Gabia missed,Fail,,,,,10,,,No take off,-20,,,,,,,,,,,,,,,,,,,, +10019,1000,5072,84,1,561341.71,4798485.44,0.00,2020-Sep-03 18:41:52.000,561343.68,4798482.74,-10,1000/5072,0.0,141.70,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 10:56:07""",561423.11,4798539.88,NULL,C:\SpiceRack\20200904\positions_log.csv,561344.171,4798485.89,Fishermen,,,Fishermen,Fail,,"No Com, Electronic HS",14-Sep,,-20,,,No wake Up,-20,,,,,,,,,,,,,,,,,,,, +10020,1000,5076,87,1,561423.63,4798542.8,0.00,2020-Sep-03 18:41:52.000,561423,4798540.05,37,1000/5076,0.0,127.60,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-04 12:50:32""",561613.17,4796861.24,NULL,C:\SpiceRack\20200904\positions_log.csv,561408.546,4798520.607,In Gabia_1,,,In Gabia_1,OK,20200913,Eastern Egg and front truster HS,13-Sep,,20,,,Surface,10,,,,,,,,,,,,,,,,,,,, +10021,1000,5080,88,1,561505.54,4798600.15,0.00,2020-Sep-03 18:41:52.000,561508.79,4798599.75,37,1000/5080,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-04 12:50:32""",561636.82,4796505.46,NULL,C:\SpiceRack\20200904\positions_log.csv,561508.137,4798603.16,In Gabia_1,,,In Gabia_1,OK,20200912,Eastern Egg and front truster HS,13-Sep,,20,,,Surface failed,-10,,,,,,,,,,,,,,,,,,,, +10022,1000,5084,91,1,561587.46,4798657.51,0.00,2020-Sep-03 18:41:52.000,561590.22,4798654.3,37,1000/5084,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 11:06:54""",561668.07,4798713.18,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561589.107,4798657.864,ROV,ROV_20200914_02,0:15,No wake Up,OK,,,15-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +10023,1000,5088,99,1,561669.37,4798714.87,0.00,2020-Sep-03 18:41:52.000,561674.16,4798725.83,35,1000/5088,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 11:08:59""",561755.37,4798770.24,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561671.21,4798716.041,In Gabia_1,,,In Gabia_1,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +10024,1000,5092,100,1,561751.29,4798772.23,0.00,2020-Sep-03 18:41:53.000,561755.58,4798770.13,37,1000/5092,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:10:57""",561837.23,4798830.21,LANDED,C:\SpiceRack\20200904\positions_log.csv,561754.318,4798774.606,In Gabia_1,,,In Gabia_1,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +10025,1000,5096,102,1,561833.2,4798829.58,0.00,2020-Sep-03 18:41:53.000,561837.23,4798830.21,37,1000/5096,0.0,147.40,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,561837.437,4798834.59,In Gabia_1,,,In Gabia_1,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +10005,1000,5016,156,1,560194.9,4797682.43,0.00,2020-Sep-04 12:16:00.000,560196.9,4796699.2,0,1000/5016,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:52,247184152,"""2020-09-03 09:36:53""",560283.82,4797736.63,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560198.796,4797676.377,Manta_10484,Manta_10484,,Manta_10484,,,,,,-30,,,,,,,,,,,,,,,,,,,,,,,, +20002,1012,5004,2,1,560121.23,4797264.61,0.00,2020-Sep-03 18:41:53.000,560115.92,4797263.54,37,1012/5004,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:46:45""",560198.22,4797324.27,LANDING,C:\SpiceRack\20200904\positions_log.csv,560117.038,4797260.288,In Gabia_2,,,In Gabia_2,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +20001,1012,5000,28,1,560039.31,4797207.25,0.00,2020-Sep-03 18:41:53.000,0,0,0,1012/5000,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:48:24""",560115.92,4797263.54,LANDING,C:\SpiceRack\20200904\positions_log.csv,560085.541,4797284.652,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +20011,1012,5040,90,1,560858.46,4797780.83,0.00,2020-Sep-04 11:56:00.000,560854.7,4797782.2,0,1012/5040,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:02:22""",560848.72,4797786.56,NAVIG,C:\SpiceRack\20200904\positions_log.csv,560856.964,4797781.978,ROV,ROV_20200914_07,0:28,Manta_2753,Fail,,"Right rear truster twisted, left rear truster locked",15-Sep,,-30,,,,,,,,,,,,,,,,,,,,,,,, +20025,1012,5096,93,1,562005.28,4798583.84,0.00,2020-Sep-03 18:41:54.000,562004.69,4798584.18,33,1012/5096,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:30:48""",560215.02,4796956.67,LANDED,C:\SpiceRack\20200904\positions_log.csv,562005.278,4798583.838,In Gabia_2,,,In Gabia_2,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +20024,1012,5092,94,1,561923.36,4798526.48,0.00,2020-Sep-03 18:41:54.000,561922.82,4798527.69,38,1012/5092,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 11:21:12""",562000.87,4798585.11,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561924.089,4798526.228,In Gabia_2,,,In Gabia_2,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +20003,1012,5008,103,1,560203.14,4797321.97,0.00,2020-Sep-03 18:41:53.000,560198.22,4797324.27,37,1012/5008,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:44:59""",560278.32,4797379.55,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560200.097,4797319.715,Surface,,,Surface,OK,20200912,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +20004,1012,5012,104,1,560285.06,4797379.33,0.00,2020-Sep-03 18:41:53.000,560278.76,4797378.81,37,1012/5012,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:43:39""",560361.72,4797437.23,LANDING,C:\SpiceRack\20200904\positions_log.csv,560280.22,4797375.689,ROV,ROV_20200914_05,0:45,All commands failed,,,Right Rear truster HS,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +20023,1012,5088,109,1,561841.45,4798469.12,0.00,2020-Sep-03 18:41:53.000,561837.73,4798467.75,35,1012/5088,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:23:33""",561921.31,4798530.37,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561838.94,4798465.796,In Gabia_2,,,In Gabia_2,OK,20200914,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +20022,1012,5084,115,1,561759.53,4798411.76,0.00,2020-Sep-03 18:41:53.000,561769.11,4798417.87,35,1012/5084,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:27:00""",561177.03,4798346.62,INIT,C:\SpiceRack\20200904\positions_log.csv,561768.498,4798416.55,Gabia missed,,,Gabia missed,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +20005,1012,5016,124,1,560366.97,4797436.68,0.00,2020-Sep-03 18:41:53.000,560361.72,4797437.23,37,1012/5016,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:23:00""",560443.65,4797502.41,LANDING,C:\SpiceRack\20200904\positions_log.csv,560364.649,4797432.797,ROV,ROV_20200914_06,0:15,No wake Up,OK,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +20007,1012,5024,128,1,560530.8,4797551.4,0.00,2020-Sep-03 18:41:53.000,560529.16,4797555.9,36,1012/5024,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:19:39""",560606.9,4797608.23,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560528.912,4797553.528,In Gabia_2,,,In Gabia_2,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +20021,1012,5080,131,1,561677.62,4798354.41,0.00,2020-Sep-03 18:41:53.000,0,0,0,1012/5080,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:24:49""",561765.91,4798418.77,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561772.233,4798451.29,ROV,ROV_20200914_03,0:25,Navigation issue,OK,,,15-Sep,,-10,,,,,,,,,,,,,,,,,,,,,,,, +20020,1012,5076,134,1,561595.7,4798297.05,0.00,2020-Sep-03 18:41:53.000,561590.55,4798294.8,36,1012/5076,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:26:54""",561774.36,4798449.79,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561590.772,4798294.037,In Gabia_2,,,In Gabia_2,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +20019,1012,5072,136,1,561513.79,4798239.69,0.00,2020-Sep-03 18:41:53.000,561506.4,4798241.76,38,1012/5072,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:40:24""",561587.63,4798297.88,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561506.805,4798240.623,ROV,ROV_20200914_04,0:08,Navigation issue,OK,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +20018,1012,5068,143,1,561431.87,4798182.33,0.00,2020-Sep-03 18:41:53.000,561426.34,4798183.54,38,1012/5068,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:42:13""",561506.4,4798241.76,LANDING,C:\SpiceRack\20200904\positions_log.csv,561429.539,4798180.879,In Gabia_2,,,In Gabia_2,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +20017,1012,5064,147,1,561349.96,4798124.98,0.00,2020-Sep-03 18:41:53.000,561344.38,4798127.78,37,1012/5064,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:48:11""",561182.12,4798346.76,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561346.795,4798122.986,Surface,,,Surface,OK,20200912,Eastern Egg and front truster HS,13-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +20006,1012,5020,172,1,560448.89,4797494.04,0.00,2020-Sep-03 18:41:53.000,560443.65,4797502.41,37,1012/5020,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:21:02""",560527.65,4797555.29,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560445.974,4797492.292,ROV,ROV_20200915_01,00:11,All commands failed,OK,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +20016,1012,5060,175,1,561268.04,4798067.62,0.00,2020-Sep-03 18:41:53.000,561264.85,4798069.07,37,1012/5060,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:45:44""",561343.88,4798128.72,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561265.234,4798067.596,In Gabia_2,,,In Gabia_2,OK,20200912,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +20008,1012,5028,177,1,560612.72,4797608.76,0.00,2020-Sep-03 18:41:53.000,560607.4,4797607.81,35,1012/5028,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:17:37""",560686.24,4797660.78,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560607.02,4797608.067,In Gabia_2,,,In Gabia_2,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +20015,1012,5056,184,1,561186.13,4798010.26,0.00,2020-Sep-03 18:41:53.000,561179.92,4798010.28,38,1012/5056,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:48:11""",561264.81,4798069.27,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561181.484,4798006.14,In Gabia_2,,,In Gabia_2,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +20014,1012,5052,188,1,561104.21,4797952.9,0.00,2020-Sep-03 18:41:53.000,561099.09,4797952.13,37,1012/5052,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:56:46""",561179.92,4798010.42,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561100.592,4797948.599,Fishermen,,,Fishermen,OK,20200914,,14-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +20013,1012,5048,192,1,561022.3,4797895.55,0.00,2020-Sep-03 18:41:53.000,561017.51,4797898.16,38,1012/5048,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 11:58:48""",561097.92,4797954.02,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561019.934,4797894.387,In Gabia_2,,,In Gabia_2,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +20012,1012,5044,198,1,560940.38,4797838.19,0.00,2020-Sep-03 18:41:53.000,0,0,0,1012/5044,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:00:21""",561017.51,4797898.16,LANDING,C:\SpiceRack\20200904\positions_log.csv,560830.183,4797774.82,In Gabia_2,,,In Gabia_2,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +20010,1012,5036,207,1,560776.55,4797723.47,0.00,2020-Sep-03 18:41:53.000,560771.05,4797725.37,38,1012/5036,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,,,,,,560773.729,4797720.893,Surface,,,Surface,OK,20200912,,15-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +20009,1012,5032,209,1,560694.63,4797666.12,0.00,2020-Sep-03 18:41:53.000,560686.06,4797660.8,38,1012/5032,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:53,247184153,"""2020-09-03 12:15:39""",560771.05,4797725.37,LANDING,C:\SpiceRack\20200904\positions_log.csv,560688.193,4797656.956,In Gabia_2,,,In Gabia_2,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30001,1024,5000,7,1,560211.39,4796961.51,0.00,2020-Sep-03 18:41:54.000,560215.02,4796956.67,38,1024/5000,0.0,136.10,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:32:17""",560298.03,4797014.52,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560213.45,4796961.015,In Gabia_3,,,In Gabia_3,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +30016,1024,5060,12,1,561440.11,4797821.87,0.00,2020-Sep-03 18:41:54.000,561445.96,4797815.07,39,1024/5060,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-04 14:32:56""",561579.41,4797901.1,SLEEP,C:\SpiceRack\20200904\positions_log.csv,561441.385,4797821.035,Surface,,,Surface,OK,20200912,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +30017,1024,5064,13,1,561522.03,4797879.23,0.00,2020-Sep-03 18:41:54.000,561581.63,4797895.28,38,1024/5064,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-04 14:32:56""",561592.27,4797937.73,NULL,C:\SpiceRack\20200904\positions_log.csv,561581.19,4797895.56,In Gabia_3,,,In Gabia_3,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +30020,1024,5076,19,1,561767.77,4798051.3,0.00,2020-Sep-04 11:19:00.000,561769,4798051.8,0,1024/5076,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:20:27""",561875.34,4798085.45,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561765.567,4798052.117,ROV,ROV_20200915_05,00:21,Manta_12025,,,,,,-30,,,,,,,,,,,,,,,,,,,,,,,, +30015,1024,5056,21,1,561358.2,4797764.52,0.00,2020-Sep-03 18:41:54.000,561418.47,4797772.45,39,1024/5056,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:08:33""",561445.96,4797815.07,LANDING,C:\SpiceRack\20200904\positions_log.csv,561418.361,4797772.865,In Gabia_3,,,In Gabia_3,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +30002,1024,5004,34,1,560293.3,4797018.87,0.00,2020-Sep-03 18:41:54.000,560298.26,4797014.79,38,1024/5004,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:34:00""",560377.78,4797071.06,LANDING,C:\SpiceRack\20200904\positions_log.csv,560294.922,4797020.2,In Gabia_3,,,In Gabia_3,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +30003,1024,5008,46,1,560375.22,4797076.22,0.00,2020-Sep-03 18:41:54.000,560377.78,4797071.06,38,1024/5008,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:35:42""",560459.58,4797131.65,LANDING,C:\SpiceRack\20200904\positions_log.csv,560377.035,4797077.075,In Gabia_3,,,In Gabia_3,OK,20200914,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30018,1024,5068,55,1,561603.94,4797936.59,0.00,2020-Sep-03 18:41:54.000,561616,4797933.93,35,1024/5068,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:12:46""",561686.5,4797991.88,LANDING,C:\SpiceRack\20200904\positions_log.csv,561615.628,4797934.243,Surface,,,Surface,Fail,20200912,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +30019,1024,5072,83,1,561685.86,4797993.95,0.00,2020-Sep-03 18:41:54.000,561686.5,4797991.88,39,1024/5072,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,,,,,,561686.84,4797993.526,ROV,ROV_20200915_04,,No take off,,,Easter Egg flashing but not released,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +30004,1024,5012,86,1,560457.13,4797133.58,0.00,2020-Sep-03 18:41:54.000,560459.58,4797131.65,38,1024/5012,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,560458.967,4797136.786,In Gabia_3,,,In Gabia_3,OK,,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +30005,1024,5016,89,1,560539.05,4797190.94,0.00,2020-Sep-03 18:41:54.000,0,0,0,1024/5016,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:43:23""",560620.54,4797246.59,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560479.91,4797095.516,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +30006,1024,5020,129,1,560620.96,4797248.3,0.00,2020-Sep-03 18:41:54.000,560621.9,4797245.96,37,1024/5020,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:43:52""",560619.32,4797170.24,NAVIG,C:\SpiceRack\20200904\positions_log.csv,560622.526,4797249.315,Gabia missed,,,Gabia missed,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +30007,1024,5024,132,1,560702.88,4797305.65,0.00,2020-Sep-03 18:41:54.000,0,0,0,1024/5024,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:46:29""",560800.6,4797380.53,LANDING,C:\SpiceRack\20200904\positions_log.csv,560689.369,4797241.869,ROV,ROV_20200915_02,00:20,Navigation issue,OK,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +30021,1024,5080,139,1,561849.69,4798108.66,0.00,2020-Sep-03 18:41:54.000,561875.68,4798085.53,38,1024/5080,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:20:59""",561932.8,4798165.33,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561875.649,4798086.767,In Gabia_3,,,In Gabia_3,OK,20200912,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30008,1024,5028,146,1,560784.79,4797363.01,0.00,2020-Sep-03 18:41:54.000,560800.6,4797380.53,38,1024/5028,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:47:04""",560783.34,4797363.17,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560785.95,4797365.636,In Gabia_3,,,In Gabia_3,OK,20200912,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30022,1024,5084,149,1,561931.61,4798166.02,0.00,2020-Sep-03 18:41:54.000,0,0,0,1024/5084,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 18:03:58""",561082.14,4797637.81,INIT,C:\SpiceRack\20200904\positions_log.csv,561932.877,4798166.765,In Gabia_3,,,In Gabia_3,OK,20200912,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30009,1024,5032,152,1,560866.71,4797420.37,0.00,2020-Sep-03 18:41:54.000,0,0,0,1024/5032,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:49:12""",560950.07,4797473.85,LANDING,C:\SpiceRack\20200904\positions_log.csv,560799.911,4797386.891,Surface,,,Surface,OK,20200912,,15-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +30010,1024,5036,153,1,560948.62,4797477.73,0.00,2020-Sep-03 18:41:54.000,560950.07,4797473.85,38,1024/5036,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:55:49""",561032.79,4797532.38,LANDING,C:\SpiceRack\20200904\positions_log.csv,560949.103,4797477.235,In Gabia_3,,,In Gabia_3,OK,20200913,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30023,1024,5088,154,1,562013.52,4798223.38,0.00,2020-Sep-03 18:41:54.000,562015.28,4798220.02,38,1024/5088,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:23:55""",562103.55,4798277.46,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562013.738,4798221.875,In Gabia_3,,,In Gabia_3,OK,20200912,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +30025,1024,5096,157,1,562177.35,4798338.09,0.00,2020-Sep-03 18:41:54.000,562182.94,4798336.65,39,1024/5096,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 15:28:56""",560382.14,4796717.02,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562184.064,4798339.728,Surface,,,Surface,OK,20200912,Front truster HS,13-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +30014,1024,5052,164,1,561276.28,4797707.16,0.00,2020-Sep-03 18:41:54.000,561280.89,4797703.67,38,1024/5052,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-04 14:31:44""",561409.05,4797770.28,NULL,C:\SpiceRack\20200904\positions_log.csv,561279.669,4797705.655,ROV,ROV_20200915_03,00:14,No take off,OK,,Easter Egg flashing but not released. Handle twisted. Foot twisted.,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +30024,1024,5092,179,1,562095.44,4798280.73,0.00,2020-Sep-03 18:41:54.000,0,0,0,1024/5092,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:25:41""",562183.21,4798336.82,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562099.891,4798280.664,Surface,,,Surface,fail,20200912,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +30011,1024,5040,194,1,561030.54,4797535.09,0.00,2020-Sep-03 18:41:54.000,561032.79,4797532.38,38,1024/5040,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 13:57:44""",561115.93,4797588.62,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561031.33,4797533.846,Fishermen,,,Fishermen,OK,20200912,Fishing boat,13-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +30012,1024,5044,199,1,561112.45,4797592.44,0.00,2020-Sep-03 18:41:54.000,561116.39,4797589.21,38,1024/5044,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 18:15:00""",561081.53,4797635.15,SLEEP,C:\SpiceRack\20200904\positions_log.csv,561114.812,4797592.912,In Gabia_3,,,In Gabia_3,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +30013,1024,5048,204,1,561194.37,4797649.8,0.00,2020-Sep-03 18:41:54.000,561081.53,4797635.15,-10,1024/5048,0.0,255.10,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:54,247184154,"""2020-09-03 14:00:24""",561279.81,4797702.23,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561085.145,4797636.548,ROV,ROV_20200914_08,0:19,No take off,OK,,"Front truster broken, left rear truster broken",,,-20,,,,,,,,,,,,,,,,,,,,,,,, +40025,1036,5096,1,1,562349.42,4798092.35,0.00,2020-Sep-03 18:41:55.000,562345.25,4798095.82,39,1036/5096,0.0,320.30,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:38:41""",560558.73,4796466.74,LANDED,C:\SpiceRack\20200904\positions_log.csv,562348.147,4798090.22,In Gabia_4,,,In Gabia_4,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40020,1036,5076,29,1,561939.85,4797805.56,0.00,2020-Sep-03 18:41:55.000,0,0,0,1036/5076,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:39:39""",562015.28,4797864.19,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561938.12,4797804.082,No wake Up,,,No wake Up,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +40008,1036,5028,58,1,560956.87,4797117.27,0.00,2020-Sep-03 18:41:55.000,560952.47,4797119.6,39,1036/5028,0.0,331.70,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:11:52""",561033.05,4797174.56,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560955.049,4797117.106,In Gabia_4,,,In Gabia_4,Fail,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40002,1036,5004,59,1,560465.37,4796773.12,0.00,2020-Sep-03 18:41:55.000,0,0,0,1036/5004,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:26:16""",560542.13,4796830.1,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560516.925,4796829.213,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +40007,1036,5024,60,1,560874.95,4797059.91,0.00,2020-Sep-03 18:41:55.000,560869.67,4797062.62,39,1036/5024,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:13:02""",560952.47,4797119.6,LANDED,C:\SpiceRack\20200904\positions_log.csv,560870.264,4797060.508,In Gabia_4,,,In Gabia_4,OK,20200912,Eastern Egg and front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40023,1036,5088,61,1,562185.59,4797977.63,0.00,2020-Sep-03 18:41:55.000,562184.43,4797977.33,40,1036/5088,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:33:57""",562264.35,4798037.42,LANDING,C:\SpiceRack\20200904\positions_log.csv,562183.736,4797976.341,Surface,,,Surface,OK,20200912,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +40021,1036,5080,68,1,562021.76,4797862.92,0.00,2020-Sep-03 18:41:55.000,562017.15,4797864.24,38,1036/5080,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:38:13""",562097.3,4797921.75,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562018.724,4797862.732,In Gabia_4,,,In Gabia_4,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40004,1036,5012,79,1,560629.2,4796887.84,0.00,2020-Sep-03 18:41:55.000,560624.31,4796890.41,39,1036/5012,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:23:23""",560705.23,4796944.96,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560626.537,4796887.91,In Gabia_4,,,In Gabia_4,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40003,1036,5008,92,1,560547.29,4796830.48,0.00,2020-Sep-03 18:41:55.000,560541.67,4796829.97,39,1036/5008,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:24:43""",560624.31,4796890.41,LANDING,C:\SpiceRack\20200904\positions_log.csv,560543.26,4796827.954,In Gabia_4,,,In Gabia_4,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40022,1036,5084,95,1,562103.68,4797920.27,0.00,2020-Sep-03 18:41:55.000,562097.86,4797921.15,38,1036/5084,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:35:58""",562184.48,4797977.26,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562100.521,4797918.079,In Gabia_4,,,In Gabia_4,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40006,1036,5020,98,1,560793.03,4797002.55,0.00,2020-Sep-03 18:41:55.000,560788.07,4797001.68,39,1036/5020,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:15:20""",560869.67,4797062.62,LANDING,C:\SpiceRack\20200904\positions_log.csv,560789.596,4797001.951,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +40005,1036,5016,107,1,560711.12,4796945.19,0.00,2020-Sep-03 18:41:55.000,560706.95,4796941.36,35,1036/5016,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:16:33""",560788.07,4797001.68,LANDING,C:\SpiceRack\20200904\positions_log.csv,560707.482,4796943.492,Surface,,,Surface,OK,20200913,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +40024,1036,5092,125,1,562267.51,4798034.99,0.00,2020-Sep-03 18:41:55.000,562264.35,4798037.42,39,1036/5092,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:32:01""",562345.25,4798095.82,LANDED,C:\SpiceRack\20200904\positions_log.csv,562268.344,4798035.57,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +40019,1036,5072,159,1,561857.93,4797748.2,0.00,2020-Sep-03 18:41:55.000,561854.63,4797752.19,39,1036/5072,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:45:09""",561937.53,4797807.32,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561856.892,4797750.094,In Gabia_4,,,In Gabia_4,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40018,1036,5068,165,1,561776.02,4797690.84,0.00,2020-Sep-03 18:41:55.000,561772.28,4797692.42,39,1036/5068,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:47:07""",561854.63,4797752.19,LANDING,C:\SpiceRack\20200904\positions_log.csv,561774.503,4797689.653,Fished,EE_20200915_01,,No com,,,Water inside - Not operative,15-Sep,,-10,,,,,,,,,,,,,,,,,,,,,,,, +40017,1036,5064,166,1,561694.1,4797633.49,0.00,2020-Sep-03 18:41:55.000,561688.08,4797630.81,35,1036/5064,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:49:02""",561772.28,4797692.42,LANDING,C:\SpiceRack\20200904\positions_log.csv,561690.857,4797632.607,Fished,EE_20200915_02,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +40012,1036,5044,169,1,561284.53,4797346.7,0.00,2020-Sep-03 18:41:55.000,561280.16,4797349.01,39,1036/5044,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:01:50""",561362.94,4797406.42,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561281.64,4797345.104,In Gabia_4,,,In Gabia_4,OK,20200912,Eastern Egg HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40015,1036,5056,170,1,561530.27,4797518.77,0.00,2020-Sep-03 18:41:55.000,561524.03,4797522.83,39,1036/5056,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,,,,,,561527.75,4797521.011,In Gabia_4,,,In Gabia_4,OK,20200912,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40011,1036,5040,180,1,561202.61,4797289.34,0.00,2020-Sep-03 18:41:55.000,561197.96,4797282.17,35,1036/5040,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:03:10""",561280.16,4797349.01,LANDING,C:\SpiceRack\20200904\positions_log.csv,561198.278,4797284.676,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +40010,1036,5036,181,1,561120.7,4797231.98,0.00,2020-Sep-03 18:41:55.000,561114.59,4797231.45,39,1036/5036,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:04:52""",561197.96,4797282.17,LANDING,C:\SpiceRack\20200904\positions_log.csv,561117.732,4797229.509,In Gabia_4,,,In Gabia_4,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40009,1036,5032,182,1,561038.78,4797174.62,0.00,2020-Sep-03 18:41:55.000,561033.13,4797174.35,39,1036/5032,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:10:09""",561114.59,4797231.45,LANDING,C:\SpiceRack\20200904\positions_log.csv,561034.728,4797173.322,Fished,EE_20200915_03,,No wake Up,,,Water inside - Not operative,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +40014,1036,5052,196,1,561448.36,4797461.41,0.00,2020-Sep-03 18:41:55.000,561446.02,4797465.12,39,1036/5052,0.0,334.50,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:58:41""",561524.03,4797522.83,LANDING,C:\SpiceRack\20200904\positions_log.csv,561447.941,4797461.812,In Gabia_4,,,In Gabia_4,OK,20200913,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40001,1036,5000,197,1,560383.46,4796715.76,0.00,2020-Sep-03 18:41:55.000,560381.92,4796717.07,39,1036/5000,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,560382.385,4796716.119,In Gabia_4,,,In Gabia_4,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +40013,1036,5048,203,1,561366.44,4797404.05,0.00,2020-Sep-03 18:41:55.000,561362.93,4797405.85,39,1036/5048,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:00:08""",561446.02,4797465.12,LANDED,C:\SpiceRack\20200904\positions_log.csv,561365.638,4797405.012,In Gabia_4,,,In Gabia_4,OK,20200913,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +40016,1036,5060,208,1,561612.19,4797576.13,0.00,2020-Sep-04 10:34:00.000,561617.1,4797575.4,0,1036/5060,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 14:50:22""",561689.35,4797633.22,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561616.807,4797573.081,ROV,ROV_20200915_06,00:49,Manta_12443,,,,,,-30,,,,,,,,,,,,,,,,,,,,,,,, +50023,1048,5088,16,1,562357.67,4797731.89,0.00,2020-Sep-03 18:41:56.000,562364.06,4797731.22,40,1048/5088,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:27:58""",562444.78,4797789.45,LANDING,C:\SpiceRack\20200904\positions_log.csv,562365.813,4797735.62,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +50024,1048,5092,18,1,562439.58,4797789.24,0.00,2020-Sep-03 18:41:56.000,562444.78,4797789.45,40,1048/5092,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:29:40""",562525.03,4797844.5,LANDED,C:\SpiceRack\20200904\positions_log.csv,562445.395,4797793.56,Gabia missed,,,Gabia missed,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +50025,1048,5096,24,1,562521.5,4797846.6,0.00,2020-Sep-03 18:41:56.000,562525.03,4797844.5,40,1048/5096,0.0,141.70,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:43:45""",560721.14,4796224.79,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562523.401,4797845.446,In Gabia_4,,,In Gabia_4,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +50022,1048,5084,35,1,562275.75,4797674.53,0.00,2020-Sep-03 18:41:56.000,562279.55,4797672.75,39,1048/5084,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:29:02""",562447.28,4797840.15,NULL,C:\SpiceRack\20200904\positions_log.csv,562279.206,4797674.313,Surface,,,Surface,OK,20200912,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +50021,1048,5080,36,1,562193.84,4797617.17,0.00,2020-Sep-03 18:41:56.000,0,0,0,1048/5080,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:25:09""",562278.63,4797671.28,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562133.088,4797594.781,Fished,EE_20200912_02,,Fished,OK,20200913,Eastern Egg HS,13-Sep,,-10,,,,,,,,,,,,,,,,,,,,,,,, +50005,1048,5016,47,1,560883.19,4796699.45,0.00,2020-Sep-04 09:56:00.000,560911.4,4796699.2,0,1048/5016,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:52:27""",561192.97,4796932.48,NAVIG,C:\SpiceRack\20200904\positions_log.csv,560883.164,4796698.138,ROV,ROV_20200915_07,00:27,Manta_1240,,,,,,-30,,,,,,,,,,,,,,,,,,,,,,,, +50010,1048,5036,51,1,561292.77,4796986.24,0.00,2020-Sep-03 18:41:56.000,0,0,0,1048/5036,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:02:00""",561378.14,4797042.43,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561443.887,4797094.158,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +50004,1048,5012,53,1,560801.28,4796642.09,0.00,2020-Sep-03 18:41:55.000,560805.24,4796641.73,38,1048/5012,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-04 13:57:40""",560880.65,4796701.28,NULL,C:\SpiceRack\20200904\positions_log.csv,560802.513,4796643.087,In Gabia_4,,,In Gabia_4,OK,20200912,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +50011,1048,5040,108,1,561374.68,4797043.59,0.00,2020-Sep-03 18:41:56.000,561378.55,4797043.79,38,1048/5040,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:03:26""",561459.17,4797098,LANDING,C:\SpiceRack\20200904\positions_log.csv,561378.269,4797046.361,Surface,,,Surface,OK,20200914,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +50003,1048,5008,113,1,560719.36,4796584.73,0.00,2020-Sep-03 18:41:55.000,560724.85,4796582.47,40,1048/5008,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:42:32""",560805.24,4796641.73,LANDING,C:\SpiceRack\20200904\positions_log.csv,560725.489,4796585.824,In Gabia_4,,,In Gabia_4,OK,20200912,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +50012,1048,5044,114,1,561456.6,4797100.95,0.00,2020-Sep-03 18:41:56.000,561459.17,4797098,40,1048/5044,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:02:45""",561444.84,4797094.82,NULL,C:\SpiceRack\20200904\positions_log.csv,561460.668,4797101.438,Fishermen,,,Fishermen,OK,20200912,Front truster HS,13-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +50008,1048,5028,116,1,561128.94,4796871.52,0.00,2020-Sep-03 18:41:55.000,561130.76,4796871.98,39,1048/5028,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,561129.58,4796872.38,In Gabia_4,,,In Gabia_4,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +50006,1048,5020,127,1,560965.11,4796756.81,0.00,2020-Sep-03 18:41:55.000,560966.27,4796753.71,38,1048/5020,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:49:18""",561048.61,4796808.77,LANDING,C:\SpiceRack\20200904\positions_log.csv,560964.118,4796754.465,In Gabia_4,,,In Gabia_4,OK,20200912,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +50007,1048,5024,133,1,561047.02,4796814.16,0.00,2020-Sep-03 18:41:55.000,561048.61,4796808.77,40,1048/5024,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:51:16""",561130.94,4796871.76,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561049.771,4796813.181,In Gabia_4,,,In Gabia_4,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +50013,1048,5048,142,1,561538.51,4797158.31,0.00,2020-Sep-03 18:41:56.000,0,0,0,1048/5048,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:06:25""",561633.31,4797220.15,LANDED,C:\SpiceRack\20200904\positions_log.csv,,,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +50017,1048,5064,148,1,561866.17,4797387.74,0.00,2020-Sep-03 18:41:56.000,561871.62,4797384.94,40,1048/5064,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:15:07""",561948.3,4797442.48,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561870.272,4797388.384,Surface,,,Surface,OK,20200912,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +50018,1048,5068,151,1,561948.09,4797445.1,0.00,2020-Sep-03 18:41:56.000,561948.87,4797442,40,1048/5068,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:18:00""",562019.18,4797502.75,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561951.805,4797447.679,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +50015,1048,5056,171,1,561702.34,4797273.02,0.00,2020-Sep-03 18:41:56.000,561707.62,4797273.05,38,1048/5056,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:12:40""",561786.59,4797327.81,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561706.482,4797274.799,Surface,,,Surface,OK,20200912,,15-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +50001,1048,5000,183,1,560555.53,4796470.02,0.00,2020-Sep-03 18:41:55.000,560558.73,4796466.74,40,1048/5000,0.0,150.20,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:40:08""",560644.57,4796524.63,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560558.708,4796469.609,In Gabia_4,,,In Gabia_4,OK,20200912,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +50019,1048,5072,191,1,562030.01,4797502.46,0.00,2020-Sep-03 18:41:56.000,562018.97,4797502.9,39,1048/5072,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:17:44""",562132.21,4797564.9,LANDING,C:\SpiceRack\20200904\positions_log.csv,562021.638,4797502.011,Surface,,,Surface,OK,20200913,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +50002,1048,5004,195,1,560637.45,4796527.38,0.00,2020-Sep-03 18:41:55.000,560644.22,4796524.88,40,1048/5004,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:55,247184155,"""2020-09-03 15:41:15""",560724.53,4796582.18,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560643.425,4796528.087,In Gabia_4,,,In Gabia_4,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +50014,1048,5052,200,1,561620.43,4797215.67,0.00,2020-Sep-03 18:41:56.000,561633.31,4797220.15,40,1048/5052,0.0,141.70,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:07:29""",561707.38,4797272.18,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561633.625,4797219.467,No wake Up,,,No wake Up,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +50016,1048,5060,201,1,561784.26,4797330.38,0.00,2020-Sep-03 18:41:56.000,561787.72,4797329.12,39,1048/5060,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 16:13:44""",561871.62,4797384.94,LANDING,C:\SpiceRack\20200904\positions_log.csv,561788.421,4797330.933,No wake Up,,,No wake Up,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +50020,1048,5076,206,1,562111.92,4797559.81,0.00,2020-Sep-03 18:41:56.000,562132.21,4797564.9,40,1048/5076,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,562131.838,4797568.01,Surface,,,Surface,OK,20200914,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +50009,1048,5032,210,1,561210.85,4796928.88,0.00,2020-Sep-03 18:41:56.000,0,0,0,1048/5032,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,,,,,,561196.164,4796930.859,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +60017,1060,5064,5,1,562038.25,4797141.99,0.00,2020-Sep-03 18:41:57.000,562032.52,4797142.46,41,1060/5064,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 17:03:58""",562114.01,4797201.91,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562034.626,4797139.477,in Gabia_5,,,in Gabia_5,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60016,1060,5060,6,1,561956.33,4797084.64,0.00,2020-Sep-03 18:41:57.000,561954.44,4797089.04,41,1060/5060,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 17:05:09""",562032.39,4797142.81,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561954.287,4797085.005,Surface failed,,,Surface failed,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +60015,1060,5056,17,1,561874.42,4797027.28,0.00,2020-Sep-03 18:41:57.000,561870.29,4797030.43,41,1060/5056,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 17:06:25""",561954.44,4797089.04,LANDING,C:\SpiceRack\20200904\positions_log.csv,561871.367,4797029.29,in Gabia_5,,,in Gabia_5,OK,20200914,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60007,1060,5024,23,1,561219.1,4796568.42,0.00,2020-Sep-03 18:41:56.000,561211.31,4796571.23,41,1060/5024,0.0,343.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:31:13""",561295.77,4796627.79,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561215.18,4796566.522,Surface,,,Surface,OK,20200913,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +60020,1060,5076,25,1,562283.99,4797314.07,0.00,2020-Sep-03 18:41:57.000,562278.7,4797316.4,39,1060/5076,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562280.32,4797312.616,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +60019,1060,5072,26,1,562202.08,4797256.71,0.00,2020-Sep-03 18:41:57.000,0,0,0,1060/5072,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 17:00:27""",562277.25,4797318.15,PMU-A,C:\SpiceRack\20200904\positions_log.csv,562171.926,4797287.809,Surface,,,Surface,OK,20200913,Eastern Egg HS,13-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +60022,1060,5084,27,1,562447.82,4797428.78,0.00,2020-Sep-03 18:41:57.000,562441.18,4797433.37,41,1060/5084,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 16:40:59""",562594.05,4797574.21,NULL,C:\SpiceRack\20200904\positions_log.csv,562444.789,4797429.978,in Gabia_5,,,in Gabia_5,OK,20200913,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60023,1060,5088,30,1,562529.74,4797486.14,0.00,2020-Sep-03 18:41:57.000,0,0,0,1060/5088,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 16:37:47""",562605.01,4797544.81,LANDING,C:\SpiceRack\20200904\positions_log.csv,562594.718,4797574.544,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +60024,1060,5092,31,1,562611.65,4797543.5,0.00,2020-Sep-03 18:41:57.000,562605.01,4797544.81,41,1060/5092,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 16:38:06""",562715.12,4797714.73,NULL,C:\SpiceRack\20200904\positions_log.csv,562609.086,4797540.06,in Gabia_5,,,in Gabia_5,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +60025,1060,5096,32,1,562693.57,4797600.86,0.00,2020-Sep-03 18:41:57.000,0,0,0,1060/5096,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562714.895,4797711.251,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +60018,1060,5068,39,1,562120.16,4797199.35,0.00,2020-Sep-03 18:41:57.000,562114.43,4797200.67,41,1060/5068,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,562115.953,4797198.078,in Gabia_5,,,in Gabia_5,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +60010,1060,5036,41,1,561464.84,4796740.49,0.00,2020-Sep-03 18:41:56.000,561461.77,4796737.26,40,1060/5036,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:20:53""",561540.86,4796800.29,LANDED,C:\SpiceRack\20200904\positions_log.csv,561462.714,4796738.599,in Gabia_5,,,in Gabia_5,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60004,1060,5012,50,1,560973.35,4796396.34,0.00,2020-Sep-03 18:41:56.000,560967.85,4796398.88,41,1060/5012,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:38:41""",561051.42,4796457.21,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560971,4796394.574,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +60014,1060,5052,65,1,561792.5,4796969.92,0.00,2020-Sep-03 18:41:57.000,0,0,0,1060/5052,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 17:14:51""",561870.46,4797030.51,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561838.329,4797028.333,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +60013,1060,5048,66,1,561710.59,4796912.56,0.00,2020-Sep-03 18:41:56.000,561707.37,4796915.04,38,1060/5048,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-04 14:33:09""",-1000,-1000,NULL,C:\SpiceRack\20200904\positions_log.csv,561707.996,4796913.517,in Gabia_5,,,in Gabia_5,OK,20200914,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60021,1060,5080,80,1,562365.91,4797371.42,0.00,2020-Sep-04 10:54:00.000,562368.3,4797368.8,0,1060/5080,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,"""2020-09-03 16:40:40""",562441.18,4797433.37,LANDING,C:\SpiceRack\20200904\positions_log.csv,562368.733,4797370.963,Manta_12614,Manta_12614,,Manta_12614,,,,,,-30,,,,,,,,,,,,,,,,,,,,,,,, +60002,1060,5004,81,1,560809.52,4796281.63,0.00,2020-Sep-03 18:41:56.000,560806.44,4796286.11,41,1060/5004,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:41:15""",560888.53,4796340.44,LANDED,C:\SpiceRack\20200904\positions_log.csv,560807.441,4796280.46,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +60006,1060,5020,85,1,561137.18,4796511.06,0.00,2020-Sep-03 18:41:56.000,561132.91,4796511.38,41,1060/5020,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:32:40""",561211.31,4796571.23,LANDED,C:\SpiceRack\20200904\positions_log.csv,561133.24,4796507.219,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +60009,1060,5032,101,1,561382.93,4796683.13,0.00,2020-Sep-03 18:41:56.000,561380.32,4796687.55,41,1060/5032,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:28:27""",561462.29,4796737.23,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561381.595,4796683.86,No wake Up,,,No wake Up,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +60005,1060,5016,121,1,561055.27,4796453.7,0.00,2020-Sep-03 18:41:56.000,561052.07,4796456.34,40,1060/5016,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:33:53""",561132.91,4796511.38,LANDING,C:\SpiceRack\20200904\positions_log.csv,561054.43,4796453.122,in Gabia_5,,,in Gabia_5,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +60001,1060,5000,123,1,560727.6,4796224.27,0.00,2020-Sep-03 18:41:56.000,560722.61,4796222.71,38,1060/5000,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:42:29""",560806.31,4796286.35,PMU-A,C:\SpiceRack\20200904\positions_log.csv,560724.094,4796221.694,in Gabia_5,,,in Gabia_5,OK,20200914,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60008,1060,5028,145,1,561301.01,4796625.78,0.00,2020-Sep-03 18:41:56.000,561295.8,4796627.66,41,1060/5028,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:29:50""",561380.32,4796687.55,LANDING,C:\SpiceRack\20200904\positions_log.csv,561298.63,4796625.635,in Gabia_5,,,in Gabia_5,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +60012,1060,5044,176,1,561628.67,4796855.21,0.00,2020-Sep-03 18:41:56.000,561624.82,4796856.33,40,1060/5044,0.0,-10.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:18:09""",561705.89,4796919.07,PMU-A,C:\SpiceRack\20200904\positions_log.csv,561625.079,4796852.846,Fishermen,,,Fishermen,OK,20200912,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +60003,1060,5008,178,1,560891.44,4796338.99,0.00,2020-Sep-03 18:41:56.000,560888.53,4796340.44,40,1060/5008,0.0,328.80,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:39:55""",560967.85,4796398.88,LANDING,C:\SpiceRack\20200904\positions_log.csv,560889.279,4796336.938,Surface failed,,,Surface failed,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +60011,1060,5040,190,1,561546.76,4796797.85,0.00,2020-Sep-03 18:41:56.000,561540.86,4796800.29,41,1060/5040,0.0,326.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:56,247184156,"""2020-09-03 17:19:17""",561624.82,4796856.33,LANDING,C:\SpiceRack\20200904\positions_log.csv,561542.942,4796795.61,in Gabia_5,,,in Gabia_5,OK,20200913,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70019,1072,5072,8,1,562374.15,4797010.96,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5072,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562377.226,4797012.3,in Gabia_5,,,in Gabia_5,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70020,1072,5076,14,1,562456.07,4797068.32,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5076,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562462.045,4797062.995,Gabia missed,,,Surface,,,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +70001,1072,5000,75,1,560899.68,4795978.53,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5000,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,560902.441,4795977.074,in Gabia_5,,,in Gabia_5,OK,20200914,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70002,1072,5004,96,1,560981.59,4796035.88,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5004,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,560985.309,4796034.419,Surface,,,Surface,OK,20200914,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +70021,1072,5080,117,1,562537.98,4797125.68,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5080,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562534.141,4797123.61,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +70025,1072,5096,126,1,562865.64,4797355.11,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5096,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562868.786,4797352.891,in Gabia_5,,,in Gabia_5,OK,20200913,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70022,1072,5084,130,1,562619.9,4797183.04,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5084,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562626.12,4797180.707,Surface,,,Surface,OK,20200914,,,,10,,,,,,,,,,,,,,,,,,,,,,,, +70024,1072,5092,135,1,562783.73,4797297.75,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5092,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562789.217,4797297.665,Surface,,,Surface,OK,20200913,Eastern Egg and front truster HS,13-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +70018,1072,5068,137,1,562292.24,4796953.61,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5068,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562305.188,4796953.401,Fished,EE_20200912_01,,Fished,OK,20200913,Eastern Egg and front truster HS,13-Sep,,-10,,,,,,,,,,,,,,,,,,,,,,,, +70023,1072,5088,140,1,562701.81,4797240.39,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5088,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562711.023,4797232.686,Surface,,,Surface,OK,20200913,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +70010,1072,5036,144,1,561636.91,4796494.75,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5036,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561631.634,4796506.086,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +70007,1072,5024,150,1,561391.17,4796322.67,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5024,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561395.994,4796324.225,in Gabia_5,,,in Gabia_5,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +70011,1072,5040,158,1,561718.83,4796552.1,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5040,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561587.348,4796631.849,Surface failed,,,Surface failed,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +70016,1072,5060,160,1,562128.41,4796838.89,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5060,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562133.38,4796838.645,in Gabia_5,,,in Gabia_5,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70017,1072,5064,161,1,562210.32,4796896.25,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5064,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562123.354,4796853.919,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +70013,1072,5048,162,1,561882.66,4796666.82,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5048,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561802.101,4796622.036,Fishermen,,,Fishermen,OK,20200912,Fishing boat,13-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +70015,1072,5056,167,1,562046.49,4796781.53,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5056,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562063.163,4796784.615,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +70014,1072,5052,168,1,561964.58,4796724.18,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5052,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561958.186,4796728.041,Surface,,,Surface,OK,20200913,,15-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +70008,1072,5028,173,1,561473.08,4796380.03,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5028,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561473.532,4796379.241,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +70006,1072,5020,186,1,561309.25,4796265.31,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5020,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561308.411,4796262.927,Surface,,,Surface,OK,20200913,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +70009,1072,5032,187,1,561555,4796437.39,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5032,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561557.082,4796438.134,in Gabia_5,,,in Gabia_5,OK,20200913,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +70012,1072,5044,189,1,561800.74,4796609.46,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5044,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561803.92,4796606.764,in Gabia_5,,,in Gabia_5,OK,20200913,,15-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70003,1072,5008,193,1,561063.51,4796093.24,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5008,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,560998.126,4796047.935,in Gabia_5,,,in Gabia_5,OK,20200913,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +70004,1072,5012,202,1,561145.42,4796150.6,0.00,2020-Sep-03 18:41:57.000,0,0,0,1072/5012,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561145.75,4796151.973,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +70005,1072,5016,205,1,561227.34,4796207.96,0.00,2020-Sep-04 09:28:00.000,561231.5,479622,0,1072/5016,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561225.176,4796206.454,ROV,ROV_20200915_08,00:13,Manta_4071,,,Battery HS,,,-30,,,,,,,,,,,,,,,,,,,,,,,, +80008,1084,5028,3,1,561645.16,4796134.28,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5028,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561638.939,4796134.916,In Gabia_6,,,In Gabia_6,OK,20200914,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +80009,1084,5032,9,1,561727.07,4796191.64,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5032,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561725.473,4796192.107,In Gabia_6,,,In Gabia_6,OK,20200913,Eastern Egg HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +80005,1084,5016,20,1,561399.41,4795962.21,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5016,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561452.337,4796018.81,No wake Up,,,No wake Up,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80012,1084,5044,22,1,561972.82,4796363.71,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5044,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561966.857,4796366.027,Surface,,,Surface,OK,20200914,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +80014,1084,5052,33,1,562136.65,4796478.43,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5052,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562135.671,4796478.783,Fishermen,,,Fishermen,OK,20200912,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80015,1084,5056,38,1,562218.56,4796535.79,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5056,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562208.39,4796531.419,Fishermen,,,Fishermen,OK,20200912,Fishing boat,13-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80013,1084,5048,42,1,562054.73,4796421.07,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5048,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562051.96,4796423.01,Surface,,,Surface,OK,20200914,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +80001,1084,5000,48,1,561071.75,4795732.78,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5000,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561070.56,4795734.655,In Gabia_6,,,In Gabia_6,OK,20200913,,14-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +80016,1084,5060,49,1,562300.48,4796593.15,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5060,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562365.641,4796656.326,Fishermen,,,Fishermen,OK,20200913,Fishing boat,13-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80024,1084,5092,64,1,562955.8,4797052.01,0.00,2020-Sep-03 18:41:58.000,0,0,0,1084/5092,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:58,247184158,,,,,,562954.669,4797050.97,Fishermen,,,Fishermen,OK,20200912,,15-Sep,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80019,1084,5072,69,1,562546.22,4796765.22,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5072,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562544.851,4796766.816,Surface failed,,,Surface failed,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +80020,1084,5076,70,1,562628.14,4796822.58,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5076,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562626.102,4796821.835,Surface,,,Surface,OK,20200914,,14-Sep,,10,,,,,,,,,,,,,,,,,,,,,,,, +80007,1084,5024,74,1,561563.24,4796076.93,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5024,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561623.984,4796133.78,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +80021,1084,5080,76,1,562710.05,4796879.93,0.00,2020-Sep-03 18:41:58.000,0,0,0,1084/5080,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:58,247184158,,,,,,562708.586,4796880.264,No com,,,No com,,,,,,-10,,,,,,,,,,,,,,,,,,,,,,,, +80022,1084,5084,77,1,562791.97,4796937.29,0.00,2020-Sep-03 18:41:58.000,0,0,0,1084/5084,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:58,247184158,,,,,,562788.733,4796937.844,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80023,1084,5088,82,1,562873.89,4796994.65,0.00,2020-Sep-03 18:41:58.000,0,0,0,1084/5088,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:58,247184158,,,,,,562868.382,4796995.728,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80006,1084,5020,97,1,561481.33,4796019.57,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5020,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561479.344,4796019.992,In Gabia_6,,,In Gabia_6,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +80018,1084,5068,105,1,562464.31,4796707.86,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5068,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562460.123,4796712.156,In Gabia_6,,,In Gabia_6,OK,20200913,Front truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +80010,1084,5036,106,1,561808.99,4796249,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5036,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561807.981,4796250.177,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80003,1084,5008,111,1,561235.58,4795847.5,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5008,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561234.892,4795851.971,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80017,1084,5064,112,1,562382.39,4796650.5,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5064,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,562381.774,4796653.825,In Gabia_6,,,In Gabia_6,OK,20200914,,,,20,,,,,,,,,,,,,,,,,,,,,,,, +80004,1084,5012,118,1,561317.5,4795904.85,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5012,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561319.96,4795905.44,No wake Up,,,No wake Up,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80011,1084,5040,120,1,561890.9,4796306.36,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5040,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561887.928,4796309.881,Fishermen,,,Fishermen,OK,20200912,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +80025,1084,5096,122,1,563037.72,4797109.36,0.00,2020-Sep-03 18:41:58.000,0,0,0,1084/5096,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:58,247184158,,,,,,563034.171,4797110.504,In Gabia_6,,,In Gabia_6,OK,20200913,Left rear truster HS,13-Sep,,20,,,,,,,,,,,,,,,,,,,,,,,, +80002,1084,5004,163,1,561153.67,4795790.14,0.00,2020-Sep-03 18:41:57.000,0,0,0,1084/5004,0.0,0.00,,0,0,0,0.0,0,,,,,,,,,,,,,,,,3-Sep-20,247,6:41:57,247184157,,,,,,561147.742,4795788.78,No take off,,,No take off,,,,,,-20,,,,,,,,,,,,,,,,,,,,,,,, +99999,9999,9999,110,9,,,,,,,,9999/9999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Never deployed,,,,,,Never deployed and mere porteuse,14-Sep,,#N/A,,,,,,,,,,,,,,,,,,,,,,,, +99999,9999,9999,62,9,,,,,,,,9999/9999,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,Never deployed,,,,,,Never deployed,13-Sep,,#N/A,,,,,,,,,,,,,,,,,,,,,,,, \ No newline at end of file diff --git a/static/darf_nodes.json b/static/darf_nodes.json new file mode 100644 index 0000000..a420209 --- /dev/null +++ b/static/darf_nodes.json @@ -0,0 +1,2426 @@ +{ + "4": { + "line": 1000, + "point": 5000, + "preplot_e": 559867.24, + "preplot_n": 4797453.0, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "10": { + "line": 1000, + "point": 5004, + "preplot_e": 559949.16, + "preplot_n": 4797510.36, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "11": { + "line": 1000, + "point": 5008, + "preplot_e": 560031.07, + "preplot_n": 4797567.72, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "15": { + "line": 1000, + "point": 5012, + "preplot_e": 560112.99, + "preplot_n": 4797625.07, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560116.82, + "aslaid_n": 4797621.72, + "recovered_time": null, + "comment": "" + }, + "37": { + "line": 1000, + "point": 5020, + "preplot_e": 560276.82, + "preplot_n": 4797739.79, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560284.01, + "aslaid_n": 4797736.15, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "40": { + "line": 1000, + "point": 5024, + "preplot_e": 560358.73, + "preplot_n": 4797797.15, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560367.98, + "aslaid_n": 4797796.99, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "43": { + "line": 1000, + "point": 5028, + "preplot_e": 560440.65, + "preplot_n": 4797854.5, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560439.27, + "aslaid_n": 4797850.52, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "44": { + "line": 1000, + "point": 5032, + "preplot_e": 560522.56, + "preplot_n": 4797911.86, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560527.58, + "aslaid_n": 4797908.74, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "45": { + "line": 1000, + "point": 5036, + "preplot_e": 560604.48, + "preplot_n": 4797969.22, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560599.66, + "aslaid_n": 4797961.54, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "52": { + "line": 1000, + "point": 5040, + "preplot_e": 560686.39, + "preplot_n": 4798026.58, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560687.96, + "aslaid_n": 4798024.23, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "54": { + "line": 1000, + "point": 5044, + "preplot_e": 560768.31, + "preplot_n": 4798083.93, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560773.34, + "aslaid_n": 4798084.4, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "56": { + "line": 1000, + "point": 5048, + "preplot_e": 560850.22, + "preplot_n": 4798141.29, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "63": { + "line": 1000, + "point": 5052, + "preplot_e": 560932.14, + "preplot_n": 4798198.65, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 560936.14, + "aslaid_n": 4798197.59, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "67": { + "line": 1000, + "point": 5056, + "preplot_e": 561014.05, + "preplot_n": 4798256.01, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561013.53, + "aslaid_n": 4798249.08, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "72": { + "line": 1000, + "point": 5060, + "preplot_e": 561095.97, + "preplot_n": 4798313.36, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561097.53, + "aslaid_n": 4798313.11, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "73": { + "line": 1000, + "point": 5064, + "preplot_e": 561177.88, + "preplot_n": 4798370.72, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561181.16, + "aslaid_n": 4798371.55, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "78": { + "line": 1000, + "point": 5068, + "preplot_e": 561259.8, + "preplot_n": 4798428.08, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "84": { + "line": 1000, + "point": 5072, + "preplot_e": 561341.71, + "preplot_n": 4798485.44, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561343.68, + "aslaid_n": 4798482.74, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "87": { + "line": 1000, + "point": 5076, + "preplot_e": 561423.63, + "preplot_n": 4798542.8, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561423.0, + "aslaid_n": 4798540.05, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "88": { + "line": 1000, + "point": 5080, + "preplot_e": 561505.54, + "preplot_n": 4798600.15, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561508.79, + "aslaid_n": 4798599.75, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "91": { + "line": 1000, + "point": 5084, + "preplot_e": 561587.46, + "preplot_n": 4798657.51, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561590.22, + "aslaid_n": 4798654.3, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "99": { + "line": 1000, + "point": 5088, + "preplot_e": 561669.37, + "preplot_n": 4798714.87, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:52.000", + "aslaid_e": 561674.16, + "aslaid_n": 4798725.83, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "100": { + "line": 1000, + "point": 5092, + "preplot_e": 561751.29, + "preplot_n": 4798772.23, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561755.58, + "aslaid_n": 4798770.13, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "102": { + "line": 1000, + "point": 5096, + "preplot_e": 561833.2, + "preplot_n": 4798829.58, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561837.23, + "aslaid_n": 4798830.21, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "156": { + "line": 1000, + "point": 5016, + "preplot_e": 560194.9, + "preplot_n": 4797682.43, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 12:16:00.000", + "aslaid_e": 560196.9, + "aslaid_n": 4796699.2, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "2": { + "line": 1012, + "point": 5004, + "preplot_e": 560121.23, + "preplot_n": 4797264.61, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560115.92, + "aslaid_n": 4797263.54, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "28": { + "line": 1012, + "point": 5000, + "preplot_e": 560039.31, + "preplot_n": 4797207.25, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "90": { + "line": 1012, + "point": 5040, + "preplot_e": 560858.46, + "preplot_n": 4797780.83, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 11:56:00.000", + "aslaid_e": 560854.7, + "aslaid_n": 4797782.2, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "93": { + "line": 1012, + "point": 5096, + "preplot_e": 562005.28, + "preplot_n": 4798583.84, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 562004.69, + "aslaid_n": 4798584.18, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "94": { + "line": 1012, + "point": 5092, + "preplot_e": 561923.36, + "preplot_n": 4798526.48, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561922.82, + "aslaid_n": 4798527.69, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "103": { + "line": 1012, + "point": 5008, + "preplot_e": 560203.14, + "preplot_n": 4797321.97, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560198.22, + "aslaid_n": 4797324.27, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "104": { + "line": 1012, + "point": 5012, + "preplot_e": 560285.06, + "preplot_n": 4797379.33, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560278.76, + "aslaid_n": 4797378.81, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "109": { + "line": 1012, + "point": 5088, + "preplot_e": 561841.45, + "preplot_n": 4798469.12, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561837.73, + "aslaid_n": 4798467.75, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "115": { + "line": 1012, + "point": 5084, + "preplot_e": 561759.53, + "preplot_n": 4798411.76, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561769.11, + "aslaid_n": 4798417.87, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "124": { + "line": 1012, + "point": 5016, + "preplot_e": 560366.97, + "preplot_n": 4797436.68, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560361.72, + "aslaid_n": 4797437.23, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "128": { + "line": 1012, + "point": 5024, + "preplot_e": 560530.8, + "preplot_n": 4797551.4, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560529.16, + "aslaid_n": 4797555.9, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "131": { + "line": 1012, + "point": 5080, + "preplot_e": 561677.62, + "preplot_n": 4798354.41, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "134": { + "line": 1012, + "point": 5076, + "preplot_e": 561595.7, + "preplot_n": 4798297.05, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561590.55, + "aslaid_n": 4798294.8, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "136": { + "line": 1012, + "point": 5072, + "preplot_e": 561513.79, + "preplot_n": 4798239.69, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561506.4, + "aslaid_n": 4798241.76, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "143": { + "line": 1012, + "point": 5068, + "preplot_e": 561431.87, + "preplot_n": 4798182.33, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561426.34, + "aslaid_n": 4798183.54, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "147": { + "line": 1012, + "point": 5064, + "preplot_e": 561349.96, + "preplot_n": 4798124.98, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561344.38, + "aslaid_n": 4798127.78, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "172": { + "line": 1012, + "point": 5020, + "preplot_e": 560448.89, + "preplot_n": 4797494.04, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560443.65, + "aslaid_n": 4797502.41, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "175": { + "line": 1012, + "point": 5060, + "preplot_e": 561268.04, + "preplot_n": 4798067.62, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561264.85, + "aslaid_n": 4798069.07, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "177": { + "line": 1012, + "point": 5028, + "preplot_e": 560612.72, + "preplot_n": 4797608.76, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560607.4, + "aslaid_n": 4797607.81, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "184": { + "line": 1012, + "point": 5056, + "preplot_e": 561186.13, + "preplot_n": 4798010.26, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561179.92, + "aslaid_n": 4798010.28, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "188": { + "line": 1012, + "point": 5052, + "preplot_e": 561104.21, + "preplot_n": 4797952.9, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561099.09, + "aslaid_n": 4797952.13, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "192": { + "line": 1012, + "point": 5048, + "preplot_e": 561022.3, + "preplot_n": 4797895.55, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 561017.51, + "aslaid_n": 4797898.16, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "198": { + "line": 1012, + "point": 5044, + "preplot_e": 560940.38, + "preplot_n": 4797838.19, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "207": { + "line": 1012, + "point": 5036, + "preplot_e": 560776.55, + "preplot_n": 4797723.47, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560771.05, + "aslaid_n": 4797725.37, + "recovered_time": null, + "comment": "" + }, + "209": { + "line": 1012, + "point": 5032, + "preplot_e": 560694.63, + "preplot_n": 4797666.12, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:53.000", + "aslaid_e": 560686.06, + "aslaid_n": 4797660.8, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "7": { + "line": 1024, + "point": 5000, + "preplot_e": 560211.39, + "preplot_n": 4796961.51, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560215.02, + "aslaid_n": 4796956.67, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "12": { + "line": 1024, + "point": 5060, + "preplot_e": 561440.11, + "preplot_n": 4797821.87, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561445.96, + "aslaid_n": 4797815.07, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "13": { + "line": 1024, + "point": 5064, + "preplot_e": 561522.03, + "preplot_n": 4797879.23, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561581.63, + "aslaid_n": 4797895.28, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "19": { + "line": 1024, + "point": 5076, + "preplot_e": 561767.77, + "preplot_n": 4798051.3, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 11:19:00.000", + "aslaid_e": 561769.0, + "aslaid_n": 4798051.8, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "21": { + "line": 1024, + "point": 5056, + "preplot_e": 561358.2, + "preplot_n": 4797764.52, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561418.47, + "aslaid_n": 4797772.45, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "34": { + "line": 1024, + "point": 5004, + "preplot_e": 560293.3, + "preplot_n": 4797018.87, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560298.26, + "aslaid_n": 4797014.79, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "46": { + "line": 1024, + "point": 5008, + "preplot_e": 560375.22, + "preplot_n": 4797076.22, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560377.78, + "aslaid_n": 4797071.06, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "55": { + "line": 1024, + "point": 5068, + "preplot_e": 561603.94, + "preplot_n": 4797936.59, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561616.0, + "aslaid_n": 4797933.93, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "83": { + "line": 1024, + "point": 5072, + "preplot_e": 561685.86, + "preplot_n": 4797993.95, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561686.5, + "aslaid_n": 4797991.88, + "recovered_time": null, + "comment": "" + }, + "86": { + "line": 1024, + "point": 5012, + "preplot_e": 560457.13, + "preplot_n": 4797133.58, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560459.58, + "aslaid_n": 4797131.65, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "89": { + "line": 1024, + "point": 5016, + "preplot_e": 560539.05, + "preplot_n": 4797190.94, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "129": { + "line": 1024, + "point": 5020, + "preplot_e": 560620.96, + "preplot_n": 4797248.3, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560621.9, + "aslaid_n": 4797245.96, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "132": { + "line": 1024, + "point": 5024, + "preplot_e": 560702.88, + "preplot_n": 4797305.65, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "139": { + "line": 1024, + "point": 5080, + "preplot_e": 561849.69, + "preplot_n": 4798108.66, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561875.68, + "aslaid_n": 4798085.53, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "146": { + "line": 1024, + "point": 5028, + "preplot_e": 560784.79, + "preplot_n": 4797363.01, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560800.6, + "aslaid_n": 4797380.53, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "149": { + "line": 1024, + "point": 5084, + "preplot_e": 561931.61, + "preplot_n": 4798166.02, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "152": { + "line": 1024, + "point": 5032, + "preplot_e": 560866.71, + "preplot_n": 4797420.37, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "153": { + "line": 1024, + "point": 5036, + "preplot_e": 560948.62, + "preplot_n": 4797477.73, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 560950.07, + "aslaid_n": 4797473.85, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "154": { + "line": 1024, + "point": 5088, + "preplot_e": 562013.52, + "preplot_n": 4798223.38, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 562015.28, + "aslaid_n": 4798220.02, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "157": { + "line": 1024, + "point": 5096, + "preplot_e": 562177.35, + "preplot_n": 4798338.09, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 562182.94, + "aslaid_n": 4798336.65, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "164": { + "line": 1024, + "point": 5052, + "preplot_e": 561276.28, + "preplot_n": 4797707.16, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561280.89, + "aslaid_n": 4797703.67, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "179": { + "line": 1024, + "point": 5092, + "preplot_e": 562095.44, + "preplot_n": 4798280.73, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "194": { + "line": 1024, + "point": 5040, + "preplot_e": 561030.54, + "preplot_n": 4797535.09, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561032.79, + "aslaid_n": 4797532.38, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "199": { + "line": 1024, + "point": 5044, + "preplot_e": 561112.45, + "preplot_n": 4797592.44, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561116.39, + "aslaid_n": 4797589.21, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "204": { + "line": 1024, + "point": 5048, + "preplot_e": 561194.37, + "preplot_n": 4797649.8, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:54.000", + "aslaid_e": 561081.53, + "aslaid_n": 4797635.15, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "1": { + "line": 1036, + "point": 5096, + "preplot_e": 562349.42, + "preplot_n": 4798092.35, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 562345.25, + "aslaid_n": 4798095.82, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "29": { + "line": 1036, + "point": 5076, + "preplot_e": 561939.85, + "preplot_n": 4797805.56, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "58": { + "line": 1036, + "point": 5028, + "preplot_e": 560956.87, + "preplot_n": 4797117.27, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560952.47, + "aslaid_n": 4797119.6, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "59": { + "line": 1036, + "point": 5004, + "preplot_e": 560465.37, + "preplot_n": 4796773.12, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "60": { + "line": 1036, + "point": 5024, + "preplot_e": 560874.95, + "preplot_n": 4797059.91, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560869.67, + "aslaid_n": 4797062.62, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "61": { + "line": 1036, + "point": 5088, + "preplot_e": 562185.59, + "preplot_n": 4797977.63, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 562184.43, + "aslaid_n": 4797977.33, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "68": { + "line": 1036, + "point": 5080, + "preplot_e": 562021.76, + "preplot_n": 4797862.92, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 562017.15, + "aslaid_n": 4797864.24, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "79": { + "line": 1036, + "point": 5012, + "preplot_e": 560629.2, + "preplot_n": 4796887.84, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560624.31, + "aslaid_n": 4796890.41, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "92": { + "line": 1036, + "point": 5008, + "preplot_e": 560547.29, + "preplot_n": 4796830.48, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560541.67, + "aslaid_n": 4796829.97, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "95": { + "line": 1036, + "point": 5084, + "preplot_e": 562103.68, + "preplot_n": 4797920.27, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 562097.86, + "aslaid_n": 4797921.15, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "98": { + "line": 1036, + "point": 5020, + "preplot_e": 560793.03, + "preplot_n": 4797002.55, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560788.07, + "aslaid_n": 4797001.68, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "107": { + "line": 1036, + "point": 5016, + "preplot_e": 560711.12, + "preplot_n": 4796945.19, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560706.95, + "aslaid_n": 4796941.36, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "125": { + "line": 1036, + "point": 5092, + "preplot_e": 562267.51, + "preplot_n": 4798034.99, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 562264.35, + "aslaid_n": 4798037.42, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "159": { + "line": 1036, + "point": 5072, + "preplot_e": 561857.93, + "preplot_n": 4797748.2, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561854.63, + "aslaid_n": 4797752.19, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "165": { + "line": 1036, + "point": 5068, + "preplot_e": 561776.02, + "preplot_n": 4797690.84, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561772.28, + "aslaid_n": 4797692.42, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "166": { + "line": 1036, + "point": 5064, + "preplot_e": 561694.1, + "preplot_n": 4797633.49, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561688.08, + "aslaid_n": 4797630.81, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "169": { + "line": 1036, + "point": 5044, + "preplot_e": 561284.53, + "preplot_n": 4797346.7, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561280.16, + "aslaid_n": 4797349.01, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "170": { + "line": 1036, + "point": 5056, + "preplot_e": 561530.27, + "preplot_n": 4797518.77, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561524.03, + "aslaid_n": 4797522.83, + "recovered_time": null, + "comment": "" + }, + "180": { + "line": 1036, + "point": 5040, + "preplot_e": 561202.61, + "preplot_n": 4797289.34, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561197.96, + "aslaid_n": 4797282.17, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "181": { + "line": 1036, + "point": 5036, + "preplot_e": 561120.7, + "preplot_n": 4797231.98, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561114.59, + "aslaid_n": 4797231.45, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "182": { + "line": 1036, + "point": 5032, + "preplot_e": 561038.78, + "preplot_n": 4797174.62, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561033.13, + "aslaid_n": 4797174.35, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "196": { + "line": 1036, + "point": 5052, + "preplot_e": 561448.36, + "preplot_n": 4797461.41, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561446.02, + "aslaid_n": 4797465.12, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "197": { + "line": 1036, + "point": 5000, + "preplot_e": 560383.46, + "preplot_n": 4796715.76, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560381.92, + "aslaid_n": 4796717.07, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "203": { + "line": 1036, + "point": 5048, + "preplot_e": 561366.44, + "preplot_n": 4797404.05, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561362.93, + "aslaid_n": 4797405.85, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "208": { + "line": 1036, + "point": 5060, + "preplot_e": 561612.19, + "preplot_n": 4797576.13, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 10:34:00.000", + "aslaid_e": 561617.1, + "aslaid_n": 4797575.4, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "16": { + "line": 1048, + "point": 5088, + "preplot_e": 562357.67, + "preplot_n": 4797731.89, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 562364.06, + "aslaid_n": 4797731.22, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "18": { + "line": 1048, + "point": 5092, + "preplot_e": 562439.58, + "preplot_n": 4797789.24, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 562444.78, + "aslaid_n": 4797789.45, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "24": { + "line": 1048, + "point": 5096, + "preplot_e": 562521.5, + "preplot_n": 4797846.6, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 562525.03, + "aslaid_n": 4797844.5, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "35": { + "line": 1048, + "point": 5084, + "preplot_e": 562275.75, + "preplot_n": 4797674.53, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 562279.55, + "aslaid_n": 4797672.75, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "36": { + "line": 1048, + "point": 5080, + "preplot_e": 562193.84, + "preplot_n": 4797617.17, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "47": { + "line": 1048, + "point": 5016, + "preplot_e": 560883.19, + "preplot_n": 4796699.45, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 09:56:00.000", + "aslaid_e": 560911.4, + "aslaid_n": 4796699.2, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "51": { + "line": 1048, + "point": 5036, + "preplot_e": 561292.77, + "preplot_n": 4796986.24, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "53": { + "line": 1048, + "point": 5012, + "preplot_e": 560801.28, + "preplot_n": 4796642.09, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560805.24, + "aslaid_n": 4796641.73, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "108": { + "line": 1048, + "point": 5040, + "preplot_e": 561374.68, + "preplot_n": 4797043.59, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561378.55, + "aslaid_n": 4797043.79, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "113": { + "line": 1048, + "point": 5008, + "preplot_e": 560719.36, + "preplot_n": 4796584.73, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560724.85, + "aslaid_n": 4796582.47, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "114": { + "line": 1048, + "point": 5044, + "preplot_e": 561456.6, + "preplot_n": 4797100.95, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561459.17, + "aslaid_n": 4797098.0, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "116": { + "line": 1048, + "point": 5028, + "preplot_e": 561128.94, + "preplot_n": 4796871.52, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561130.76, + "aslaid_n": 4796871.98, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "127": { + "line": 1048, + "point": 5020, + "preplot_e": 560965.11, + "preplot_n": 4796756.81, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560966.27, + "aslaid_n": 4796753.71, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "133": { + "line": 1048, + "point": 5024, + "preplot_e": 561047.02, + "preplot_n": 4796814.16, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 561048.61, + "aslaid_n": 4796808.77, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "142": { + "line": 1048, + "point": 5048, + "preplot_e": 561538.51, + "preplot_n": 4797158.31, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "148": { + "line": 1048, + "point": 5064, + "preplot_e": 561866.17, + "preplot_n": 4797387.74, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561871.62, + "aslaid_n": 4797384.94, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "151": { + "line": 1048, + "point": 5068, + "preplot_e": 561948.09, + "preplot_n": 4797445.1, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561948.87, + "aslaid_n": 4797442.0, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "171": { + "line": 1048, + "point": 5056, + "preplot_e": 561702.34, + "preplot_n": 4797273.02, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561707.62, + "aslaid_n": 4797273.05, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "183": { + "line": 1048, + "point": 5000, + "preplot_e": 560555.53, + "preplot_n": 4796470.02, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560558.73, + "aslaid_n": 4796466.74, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "191": { + "line": 1048, + "point": 5072, + "preplot_e": 562030.01, + "preplot_n": 4797502.46, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 562018.97, + "aslaid_n": 4797502.9, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "195": { + "line": 1048, + "point": 5004, + "preplot_e": 560637.45, + "preplot_n": 4796527.38, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:55.000", + "aslaid_e": 560644.22, + "aslaid_n": 4796524.88, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "200": { + "line": 1048, + "point": 5052, + "preplot_e": 561620.43, + "preplot_n": 4797215.67, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561633.31, + "aslaid_n": 4797220.15, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "201": { + "line": 1048, + "point": 5060, + "preplot_e": 561784.26, + "preplot_n": 4797330.38, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561787.72, + "aslaid_n": 4797329.12, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "206": { + "line": 1048, + "point": 5076, + "preplot_e": 562111.92, + "preplot_n": 4797559.81, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 562132.21, + "aslaid_n": 4797564.9, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "210": { + "line": 1048, + "point": 5032, + "preplot_e": 561210.85, + "preplot_n": 4796928.88, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "5": { + "line": 1060, + "point": 5064, + "preplot_e": 562038.25, + "preplot_n": 4797141.99, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 562032.52, + "aslaid_n": 4797142.46, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "6": { + "line": 1060, + "point": 5060, + "preplot_e": 561956.33, + "preplot_n": 4797084.64, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 561954.44, + "aslaid_n": 4797089.04, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "17": { + "line": 1060, + "point": 5056, + "preplot_e": 561874.42, + "preplot_n": 4797027.28, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 561870.29, + "aslaid_n": 4797030.43, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "23": { + "line": 1060, + "point": 5024, + "preplot_e": 561219.1, + "preplot_n": 4796568.42, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561211.31, + "aslaid_n": 4796571.23, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "25": { + "line": 1060, + "point": 5076, + "preplot_e": 562283.99, + "preplot_n": 4797314.07, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 562278.7, + "aslaid_n": 4797316.4, + "recovered_time": null, + "comment": "" + }, + "26": { + "line": 1060, + "point": 5072, + "preplot_e": 562202.08, + "preplot_n": 4797256.71, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "27": { + "line": 1060, + "point": 5084, + "preplot_e": 562447.82, + "preplot_n": 4797428.78, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 562441.18, + "aslaid_n": 4797433.37, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "30": { + "line": 1060, + "point": 5088, + "preplot_e": 562529.74, + "preplot_n": 4797486.14, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "31": { + "line": 1060, + "point": 5092, + "preplot_e": 562611.65, + "preplot_n": 4797543.5, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 562605.01, + "aslaid_n": 4797544.81, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "32": { + "line": 1060, + "point": 5096, + "preplot_e": 562693.57, + "preplot_n": 4797600.86, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "39": { + "line": 1060, + "point": 5068, + "preplot_e": 562120.16, + "preplot_n": 4797199.35, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": 562114.43, + "aslaid_n": 4797200.67, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "41": { + "line": 1060, + "point": 5036, + "preplot_e": 561464.84, + "preplot_n": 4796740.49, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561461.77, + "aslaid_n": 4796737.26, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "50": { + "line": 1060, + "point": 5012, + "preplot_e": 560973.35, + "preplot_n": 4796396.34, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 560967.85, + "aslaid_n": 4796398.88, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "65": { + "line": 1060, + "point": 5052, + "preplot_e": 561792.5, + "preplot_n": 4796969.92, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "66": { + "line": 1060, + "point": 5048, + "preplot_e": 561710.59, + "preplot_n": 4796912.56, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561707.37, + "aslaid_n": 4796915.04, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "80": { + "line": 1060, + "point": 5080, + "preplot_e": 562365.91, + "preplot_n": 4797371.42, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 10:54:00.000", + "aslaid_e": 562368.3, + "aslaid_n": 4797368.8, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "81": { + "line": 1060, + "point": 5004, + "preplot_e": 560809.52, + "preplot_n": 4796281.63, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 560806.44, + "aslaid_n": 4796286.11, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "85": { + "line": 1060, + "point": 5020, + "preplot_e": 561137.18, + "preplot_n": 4796511.06, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561132.91, + "aslaid_n": 4796511.38, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "101": { + "line": 1060, + "point": 5032, + "preplot_e": 561382.93, + "preplot_n": 4796683.13, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561380.32, + "aslaid_n": 4796687.55, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "121": { + "line": 1060, + "point": 5016, + "preplot_e": 561055.27, + "preplot_n": 4796453.7, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561052.07, + "aslaid_n": 4796456.34, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "123": { + "line": 1060, + "point": 5000, + "preplot_e": 560727.6, + "preplot_n": 4796224.27, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 560722.61, + "aslaid_n": 4796222.71, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "145": { + "line": 1060, + "point": 5028, + "preplot_e": 561301.01, + "preplot_n": 4796625.78, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561295.8, + "aslaid_n": 4796627.66, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "176": { + "line": 1060, + "point": 5044, + "preplot_e": 561628.67, + "preplot_n": 4796855.21, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561624.82, + "aslaid_n": 4796856.33, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "178": { + "line": 1060, + "point": 5008, + "preplot_e": 560891.44, + "preplot_n": 4796338.99, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 560888.53, + "aslaid_n": 4796340.44, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "190": { + "line": 1060, + "point": 5040, + "preplot_e": 561546.76, + "preplot_n": 4796797.85, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:56.000", + "aslaid_e": 561540.86, + "aslaid_n": 4796800.29, + "recovered_time": null, + "comment": "C:\\SpiceRack\\20200904\\positions_log.csv" + }, + "8": { + "line": 1072, + "point": 5072, + "preplot_e": 562374.15, + "preplot_n": 4797010.96, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "14": { + "line": 1072, + "point": 5076, + "preplot_e": 562456.07, + "preplot_n": 4797068.32, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "75": { + "line": 1072, + "point": 5000, + "preplot_e": 560899.68, + "preplot_n": 4795978.53, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "96": { + "line": 1072, + "point": 5004, + "preplot_e": 560981.59, + "preplot_n": 4796035.88, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "117": { + "line": 1072, + "point": 5080, + "preplot_e": 562537.98, + "preplot_n": 4797125.68, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "126": { + "line": 1072, + "point": 5096, + "preplot_e": 562865.64, + "preplot_n": 4797355.11, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "130": { + "line": 1072, + "point": 5084, + "preplot_e": 562619.9, + "preplot_n": 4797183.04, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "135": { + "line": 1072, + "point": 5092, + "preplot_e": 562783.73, + "preplot_n": 4797297.75, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "137": { + "line": 1072, + "point": 5068, + "preplot_e": 562292.24, + "preplot_n": 4796953.61, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "140": { + "line": 1072, + "point": 5088, + "preplot_e": 562701.81, + "preplot_n": 4797240.39, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "144": { + "line": 1072, + "point": 5036, + "preplot_e": 561636.91, + "preplot_n": 4796494.75, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "150": { + "line": 1072, + "point": 5024, + "preplot_e": 561391.17, + "preplot_n": 4796322.67, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "158": { + "line": 1072, + "point": 5040, + "preplot_e": 561718.83, + "preplot_n": 4796552.1, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "160": { + "line": 1072, + "point": 5060, + "preplot_e": 562128.41, + "preplot_n": 4796838.89, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "161": { + "line": 1072, + "point": 5064, + "preplot_e": 562210.32, + "preplot_n": 4796896.25, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "162": { + "line": 1072, + "point": 5048, + "preplot_e": 561882.66, + "preplot_n": 4796666.82, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "167": { + "line": 1072, + "point": 5056, + "preplot_e": 562046.49, + "preplot_n": 4796781.53, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "168": { + "line": 1072, + "point": 5052, + "preplot_e": 561964.58, + "preplot_n": 4796724.18, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "173": { + "line": 1072, + "point": 5028, + "preplot_e": 561473.08, + "preplot_n": 4796380.03, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "186": { + "line": 1072, + "point": 5020, + "preplot_e": 561309.25, + "preplot_n": 4796265.31, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "187": { + "line": 1072, + "point": 5032, + "preplot_e": 561555.0, + "preplot_n": 4796437.39, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "189": { + "line": 1072, + "point": 5044, + "preplot_e": 561800.74, + "preplot_n": 4796609.46, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "193": { + "line": 1072, + "point": 5008, + "preplot_e": 561063.51, + "preplot_n": 4796093.24, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "202": { + "line": 1072, + "point": 5012, + "preplot_e": 561145.42, + "preplot_n": 4796150.6, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "205": { + "line": 1072, + "point": 5016, + "preplot_e": 561227.34, + "preplot_n": 4796207.96, + "depth": 0.0, + "aslaid_time": "2020-Sep-04 09:28:00.000", + "aslaid_e": 561231.5, + "aslaid_n": 479622.0, + "recovered_time": null, + "comment": "" + }, + "3": { + "line": 1084, + "point": 5028, + "preplot_e": 561645.16, + "preplot_n": 4796134.28, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "9": { + "line": 1084, + "point": 5032, + "preplot_e": 561727.07, + "preplot_n": 4796191.64, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "20": { + "line": 1084, + "point": 5016, + "preplot_e": 561399.41, + "preplot_n": 4795962.21, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "22": { + "line": 1084, + "point": 5044, + "preplot_e": 561972.82, + "preplot_n": 4796363.71, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "33": { + "line": 1084, + "point": 5052, + "preplot_e": 562136.65, + "preplot_n": 4796478.43, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "38": { + "line": 1084, + "point": 5056, + "preplot_e": 562218.56, + "preplot_n": 4796535.79, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "42": { + "line": 1084, + "point": 5048, + "preplot_e": 562054.73, + "preplot_n": 4796421.07, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "48": { + "line": 1084, + "point": 5000, + "preplot_e": 561071.75, + "preplot_n": 4795732.78, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "49": { + "line": 1084, + "point": 5060, + "preplot_e": 562300.48, + "preplot_n": 4796593.15, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "64": { + "line": 1084, + "point": 5092, + "preplot_e": 562955.8, + "preplot_n": 4797052.01, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:58.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "69": { + "line": 1084, + "point": 5072, + "preplot_e": 562546.22, + "preplot_n": 4796765.22, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "70": { + "line": 1084, + "point": 5076, + "preplot_e": 562628.14, + "preplot_n": 4796822.58, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "74": { + "line": 1084, + "point": 5024, + "preplot_e": 561563.24, + "preplot_n": 4796076.93, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "76": { + "line": 1084, + "point": 5080, + "preplot_e": 562710.05, + "preplot_n": 4796879.93, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:58.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "77": { + "line": 1084, + "point": 5084, + "preplot_e": 562791.97, + "preplot_n": 4796937.29, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:58.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "82": { + "line": 1084, + "point": 5088, + "preplot_e": 562873.89, + "preplot_n": 4796994.65, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:58.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "97": { + "line": 1084, + "point": 5020, + "preplot_e": 561481.33, + "preplot_n": 4796019.57, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "105": { + "line": 1084, + "point": 5068, + "preplot_e": 562464.31, + "preplot_n": 4796707.86, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "106": { + "line": 1084, + "point": 5036, + "preplot_e": 561808.99, + "preplot_n": 4796249.0, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "111": { + "line": 1084, + "point": 5008, + "preplot_e": 561235.58, + "preplot_n": 4795847.5, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "112": { + "line": 1084, + "point": 5064, + "preplot_e": 562382.39, + "preplot_n": 4796650.5, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "118": { + "line": 1084, + "point": 5012, + "preplot_e": 561317.5, + "preplot_n": 4795904.85, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "120": { + "line": 1084, + "point": 5040, + "preplot_e": 561890.9, + "preplot_n": 4796306.36, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "122": { + "line": 1084, + "point": 5096, + "preplot_e": 563037.72, + "preplot_n": 4797109.36, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:58.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "163": { + "line": 1084, + "point": 5004, + "preplot_e": 561153.67, + "preplot_n": 4795790.14, + "depth": 0.0, + "aslaid_time": "2020-Sep-03 18:41:57.000", + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "110": { + "line": 9999, + "point": 9999, + "preplot_e": null, + "preplot_n": null, + "depth": null, + "aslaid_time": null, + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + }, + "62": { + "line": 9999, + "point": 9999, + "preplot_e": null, + "preplot_n": null, + "depth": null, + "aslaid_time": null, + "aslaid_e": null, + "aslaid_n": null, + "recovered_time": null, + "comment": "" + } +} \ No newline at end of file diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..eb8a0a6 --- /dev/null +++ b/static/index.html @@ -0,0 +1,580 @@ + + + + + + Seismic H5 Viewer + + + + +
+
+

+ + + + + + + + + + Seismic H5 Viewer +

+
+
+
+ Connecting... +
+
— files
+
+
+ +
+
+

📁 H5 Files

+
+
+
+ Loading files... +
+
+
+ +
+
+ + + +

Select a file

+

Choose an H5 file from the list to view seismic waveforms

+
+
+
+
+ + + + diff --git a/viewer.html b/viewer.html new file mode 100644 index 0000000..eb8a0a6 --- /dev/null +++ b/viewer.html @@ -0,0 +1,580 @@ + + + + + + Seismic H5 Viewer + + + + +
+
+

+ + + + + + + + + + Seismic H5 Viewer +

+
+
+
+ Connecting... +
+
— files
+
+
+ +
+
+

📁 H5 Files

+
+
+
+ Loading files... +
+
+
+ +
+
+ + + +

Select a file

+

Choose an H5 file from the list to view seismic waveforms

+
+
+
+
+ + + +