Module pygw.test.conftest

Source code
#
# Copyright (c) 2013-2022 Contributors to the Eclipse Foundation

#
# See the NOTICE file distributed with this work for additional information regarding copyright
# ownership. All rights reserved. This program and the accompanying materials are made available
# under the terms of the Apache License, Version 2.0 which accompanies this distribution and is
# available at http://www.apache.org/licenses/LICENSE-2.0.txt
# ===============================================================================================

import pytest
import os
import shutil
import time

from datetime import datetime

from shapely.geometry import Point

from pygw.base import CloseableIterator
from pygw.store import DataStoreFactory
from pygw.store.rocksdb import RocksDBOptions
from pygw.geotools import SimpleFeatureTypeBuilder
from pygw.geotools import AttributeDescriptor
from pygw.geotools import FeatureDataAdapter
from pygw.geotools import SimpleFeatureBuilder

# "Point" Type
POINT_TYPE_NAME = "TestPointType"
POINT_GEOMETRY_FIELD = "the_geom"
POINT_TIME_FIELD = "date"
POINT_NUMBER_FIELD = "flt"
POINT_COLOR_FIELD = "color"
POINT_SHAPE_FIELD = "shape"
_point_type_builder = SimpleFeatureTypeBuilder()
_point_type_builder.set_name(POINT_TYPE_NAME)
_point_type_builder.add(AttributeDescriptor.point(POINT_GEOMETRY_FIELD))
_point_type_builder.add(AttributeDescriptor.date(POINT_TIME_FIELD))
_point_type_builder.add(AttributeDescriptor.float(POINT_NUMBER_FIELD))
_point_type_builder.add(AttributeDescriptor.string(POINT_COLOR_FIELD))
_point_type_builder.add(AttributeDescriptor.string(POINT_SHAPE_FIELD))
POINT_TYPE = _point_type_builder.build_feature_type()

# "Point" Type Adapter
POINT_TYPE_ADAPTER = FeatureDataAdapter(POINT_TYPE)

# "Point" Feature builder
POINT_FEATURE_BUILDER = SimpleFeatureBuilder(POINT_TYPE)

COLORS = ['RED', 'GREEN', 'BLUE']
SHAPES = ['SQUARE', 'CIRCLE', 'TRIANGLE', 'RECTANGLE']


def _create_feature(fid, geometry, timestamp):
    POINT_FEATURE_BUILDER.set_attr(POINT_GEOMETRY_FIELD, geometry)
    POINT_FEATURE_BUILDER.set_attr(POINT_TIME_FIELD, datetime.utcfromtimestamp(timestamp))
    POINT_FEATURE_BUILDER.set_attr(POINT_NUMBER_FIELD, timestamp)
    POINT_FEATURE_BUILDER.set_attr(POINT_COLOR_FIELD, COLORS[timestamp % 3])
    POINT_FEATURE_BUILDER.set_attr(POINT_SHAPE_FIELD, SHAPES[timestamp % 4])
    return POINT_FEATURE_BUILDER.build(fid)


def latitude(lon_value):
    if lon_value < 0:
        return lon_value % -90
    return lon_value % 90


TEST_DATA = [
    _create_feature(id_, Point(i, latitude(i)), i) for
    id_, i in enumerate(range(-180, 180))]

TEST_DATA_OFFSET = [
    _create_feature(id_, Point(i+0.5, latitude(i+0.5)), i) for
    id_, i in enumerate(range(-180, 180))]

# Test Directory
TEST_DIR = os.path.join(os.getcwd(), "test")


@pytest.fixture
def test_ds():
    os.makedirs(TEST_DIR, exist_ok=True)
    options = RocksDBOptions()
    options.set_geowave_namespace("geowave.tests")
    options.set_directory(os.path.join(TEST_DIR, "datastore"))
    ds = DataStoreFactory.create_data_store(options)
    yield ds
    # teardown here
    ds.delete_all()
    shutil.rmtree(TEST_DIR)
    while os.path.isdir(TEST_DIR):
        time.sleep(0.01)

def write_test_data_offset(ds, *expected_indices):
    write_test_data(ds, *expected_indices, data=TEST_DATA_OFFSET)

def write_test_data(ds, *expected_indices, data=TEST_DATA):
    writer = ds.create_writer(POINT_TYPE_ADAPTER.get_type_name())
    for pt in data:
        results = writer.write(pt)
        assert not results.is_empty()
        written_indices = results.get_written_index_names()
        assert len(written_indices) == len(expected_indices)
        assert all([idx.get_name() in written_indices for idx in expected_indices])
    writer.close()


def results_as_list(results):
    assert isinstance(results, CloseableIterator)
    res = [d for d in results]
    results.close()
    return res

Functions

def latitude(lon_value)
Source code
def latitude(lon_value):
    if lon_value < 0:
        return lon_value % -90
    return lon_value % 90
def results_as_list(results)
Source code
def results_as_list(results):
    assert isinstance(results, CloseableIterator)
    res = [d for d in results]
    results.close()
    return res
def test_ds()
Source code
@pytest.fixture
def test_ds():
    os.makedirs(TEST_DIR, exist_ok=True)
    options = RocksDBOptions()
    options.set_geowave_namespace("geowave.tests")
    options.set_directory(os.path.join(TEST_DIR, "datastore"))
    ds = DataStoreFactory.create_data_store(options)
    yield ds
    # teardown here
    ds.delete_all()
    shutil.rmtree(TEST_DIR)
    while os.path.isdir(TEST_DIR):
        time.sleep(0.01)
def write_test_data(ds, *expected_indices, data=[pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-180 0), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:00 UTC 1969, SimpleFeatureImpl.Attribute: flt=-180.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-179 -89), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:01 UTC 1969, SimpleFeatureImpl.Attribute: flt=-179.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-178 -88), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:02 UTC 1969, SimpleFeatureImpl.Attribute: flt=-178.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-177 -87), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:03 UTC 1969, SimpleFeatureImpl.Attribute: flt=-177.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-176 -86), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:04 UTC 1969, SimpleFeatureImpl.Attribute: flt=-176.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-175 -85), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:05 UTC 1969, SimpleFeatureImpl.Attribute: flt=-175.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-174 -84), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:06 UTC 1969, SimpleFeatureImpl.Attribute: flt=-174.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-173 -83), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:07 UTC 1969, SimpleFeatureImpl.Attribute: flt=-173.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-172 -82), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:08 UTC 1969, SimpleFeatureImpl.Attribute: flt=-172.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-171 -81), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:09 UTC 1969, SimpleFeatureImpl.Attribute: flt=-171.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-170 -80), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:10 UTC 1969, SimpleFeatureImpl.Attribute: flt=-170.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-169 -79), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:11 UTC 1969, SimpleFeatureImpl.Attribute: flt=-169.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-168 -78), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:12 UTC 1969, SimpleFeatureImpl.Attribute: flt=-168.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-167 -77), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:13 UTC 1969, SimpleFeatureImpl.Attribute: flt=-167.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-166 -76), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:14 UTC 1969, SimpleFeatureImpl.Attribute: flt=-166.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-165 -75), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:15 UTC 1969, SimpleFeatureImpl.Attribute: flt=-165.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-164 -74), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:16 UTC 1969, SimpleFeatureImpl.Attribute: flt=-164.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-163 -73), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:17 UTC 1969, SimpleFeatureImpl.Attribute: flt=-163.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-162 -72), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:18 UTC 1969, SimpleFeatureImpl.Attribute: flt=-162.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-161 -71), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:19 UTC 1969, SimpleFeatureImpl.Attribute: flt=-161.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-160 -70), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:20 UTC 1969, SimpleFeatureImpl.Attribute: flt=-160.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-159 -69), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:21 UTC 1969, SimpleFeatureImpl.Attribute: flt=-159.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-158 -68), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:22 UTC 1969, SimpleFeatureImpl.Attribute: flt=-158.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-157 -67), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:23 UTC 1969, SimpleFeatureImpl.Attribute: flt=-157.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-156 -66), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:24 UTC 1969, SimpleFeatureImpl.Attribute: flt=-156.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-155 -65), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:25 UTC 1969, SimpleFeatureImpl.Attribute: flt=-155.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-154 -64), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:26 UTC 1969, SimpleFeatureImpl.Attribute: flt=-154.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-153 -63), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:27 UTC 1969, SimpleFeatureImpl.Attribute: flt=-153.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-152 -62), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:28 UTC 1969, SimpleFeatureImpl.Attribute: flt=-152.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-151 -61), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:29 UTC 1969, SimpleFeatureImpl.Attribute: flt=-151.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-150 -60), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:30 UTC 1969, SimpleFeatureImpl.Attribute: flt=-150.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-149 -59), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:31 UTC 1969, SimpleFeatureImpl.Attribute: flt=-149.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-148 -58), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:32 UTC 1969, SimpleFeatureImpl.Attribute: flt=-148.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-147 -57), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:33 UTC 1969, SimpleFeatureImpl.Attribute: flt=-147.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-146 -56), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:34 UTC 1969, SimpleFeatureImpl.Attribute: flt=-146.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-145 -55), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:35 UTC 1969, SimpleFeatureImpl.Attribute: flt=-145.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-144 -54), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:36 UTC 1969, SimpleFeatureImpl.Attribute: flt=-144.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-143 -53), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:37 UTC 1969, SimpleFeatureImpl.Attribute: flt=-143.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-142 -52), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:38 UTC 1969, SimpleFeatureImpl.Attribute: flt=-142.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-141 -51), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:39 UTC 1969, SimpleFeatureImpl.Attribute: flt=-141.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-140 -50), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:40 UTC 1969, SimpleFeatureImpl.Attribute: flt=-140.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-139 -49), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:41 UTC 1969, SimpleFeatureImpl.Attribute: flt=-139.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-138 -48), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:42 UTC 1969, SimpleFeatureImpl.Attribute: flt=-138.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-137 -47), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:43 UTC 1969, SimpleFeatureImpl.Attribute: flt=-137.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-136 -46), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:44 UTC 1969, SimpleFeatureImpl.Attribute: flt=-136.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-135 -45), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:45 UTC 1969, SimpleFeatureImpl.Attribute: flt=-135.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-134 -44), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:46 UTC 1969, SimpleFeatureImpl.Attribute: flt=-134.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-133 -43), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:47 UTC 1969, SimpleFeatureImpl.Attribute: flt=-133.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-132 -42), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:48 UTC 1969, SimpleFeatureImpl.Attribute: flt=-132.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-131 -41), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:49 UTC 1969, SimpleFeatureImpl.Attribute: flt=-131.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-130 -40), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:50 UTC 1969, SimpleFeatureImpl.Attribute: flt=-130.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-129 -39), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:51 UTC 1969, SimpleFeatureImpl.Attribute: flt=-129.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-128 -38), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:52 UTC 1969, SimpleFeatureImpl.Attribute: flt=-128.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-127 -37), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:53 UTC 1969, SimpleFeatureImpl.Attribute: flt=-127.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-126 -36), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:54 UTC 1969, SimpleFeatureImpl.Attribute: flt=-126.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-125 -35), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:55 UTC 1969, SimpleFeatureImpl.Attribute: flt=-125.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-124 -34), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:56 UTC 1969, SimpleFeatureImpl.Attribute: flt=-124.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-123 -33), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:57 UTC 1969, SimpleFeatureImpl.Attribute: flt=-123.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-122 -32), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:58 UTC 1969, SimpleFeatureImpl.Attribute: flt=-122.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-121 -31), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:57:59 UTC 1969, SimpleFeatureImpl.Attribute: flt=-121.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-120 -30), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:00 UTC 1969, SimpleFeatureImpl.Attribute: flt=-120.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-119 -29), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:01 UTC 1969, SimpleFeatureImpl.Attribute: flt=-119.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-118 -28), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:02 UTC 1969, SimpleFeatureImpl.Attribute: flt=-118.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-117 -27), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:03 UTC 1969, SimpleFeatureImpl.Attribute: flt=-117.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-116 -26), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:04 UTC 1969, SimpleFeatureImpl.Attribute: flt=-116.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-115 -25), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:05 UTC 1969, SimpleFeatureImpl.Attribute: flt=-115.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-114 -24), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:06 UTC 1969, SimpleFeatureImpl.Attribute: flt=-114.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-113 -23), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:07 UTC 1969, SimpleFeatureImpl.Attribute: flt=-113.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-112 -22), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:08 UTC 1969, SimpleFeatureImpl.Attribute: flt=-112.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-111 -21), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:09 UTC 1969, SimpleFeatureImpl.Attribute: flt=-111.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-110 -20), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:10 UTC 1969, SimpleFeatureImpl.Attribute: flt=-110.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-109 -19), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:11 UTC 1969, SimpleFeatureImpl.Attribute: flt=-109.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-108 -18), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:12 UTC 1969, SimpleFeatureImpl.Attribute: flt=-108.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-107 -17), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:13 UTC 1969, SimpleFeatureImpl.Attribute: flt=-107.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-106 -16), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:14 UTC 1969, SimpleFeatureImpl.Attribute: flt=-106.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-105 -15), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:15 UTC 1969, SimpleFeatureImpl.Attribute: flt=-105.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-104 -14), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:16 UTC 1969, SimpleFeatureImpl.Attribute: flt=-104.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-103 -13), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:17 UTC 1969, SimpleFeatureImpl.Attribute: flt=-103.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-102 -12), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:18 UTC 1969, SimpleFeatureImpl.Attribute: flt=-102.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-101 -11), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:19 UTC 1969, SimpleFeatureImpl.Attribute: flt=-101.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-100 -10), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:20 UTC 1969, SimpleFeatureImpl.Attribute: flt=-100.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-99 -9), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:21 UTC 1969, SimpleFeatureImpl.Attribute: flt=-99.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-98 -8), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:22 UTC 1969, SimpleFeatureImpl.Attribute: flt=-98.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-97 -7), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:23 UTC 1969, SimpleFeatureImpl.Attribute: flt=-97.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-96 -6), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:24 UTC 1969, SimpleFeatureImpl.Attribute: flt=-96.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-95 -5), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:25 UTC 1969, SimpleFeatureImpl.Attribute: flt=-95.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-94 -4), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:26 UTC 1969, SimpleFeatureImpl.Attribute: flt=-94.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-93 -3), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:27 UTC 1969, SimpleFeatureImpl.Attribute: flt=-93.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-92 -2), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:28 UTC 1969, SimpleFeatureImpl.Attribute: flt=-92.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-91 -1), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:29 UTC 1969, SimpleFeatureImpl.Attribute: flt=-91.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-90 0), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:30 UTC 1969, SimpleFeatureImpl.Attribute: flt=-90.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-89 -89), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:31 UTC 1969, SimpleFeatureImpl.Attribute: flt=-89.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-88 -88), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:32 UTC 1969, SimpleFeatureImpl.Attribute: flt=-88.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-87 -87), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:33 UTC 1969, SimpleFeatureImpl.Attribute: flt=-87.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-86 -86), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:34 UTC 1969, SimpleFeatureImpl.Attribute: flt=-86.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-85 -85), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:35 UTC 1969, SimpleFeatureImpl.Attribute: flt=-85.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-84 -84), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:36 UTC 1969, SimpleFeatureImpl.Attribute: flt=-84.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-83 -83), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:37 UTC 1969, SimpleFeatureImpl.Attribute: flt=-83.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-82 -82), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:38 UTC 1969, SimpleFeatureImpl.Attribute: flt=-82.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-81 -81), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:39 UTC 1969, SimpleFeatureImpl.Attribute: flt=-81.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-80 -80), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:40 UTC 1969, SimpleFeatureImpl.Attribute: flt=-80.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-79 -79), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:41 UTC 1969, SimpleFeatureImpl.Attribute: flt=-79.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-78 -78), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:42 UTC 1969, SimpleFeatureImpl.Attribute: flt=-78.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-77 -77), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:43 UTC 1969, SimpleFeatureImpl.Attribute: flt=-77.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-76 -76), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:44 UTC 1969, SimpleFeatureImpl.Attribute: flt=-76.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-75 -75), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:45 UTC 1969, SimpleFeatureImpl.Attribute: flt=-75.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-74 -74), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:46 UTC 1969, SimpleFeatureImpl.Attribute: flt=-74.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-73 -73), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:47 UTC 1969, SimpleFeatureImpl.Attribute: flt=-73.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-72 -72), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:48 UTC 1969, SimpleFeatureImpl.Attribute: flt=-72.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-71 -71), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:49 UTC 1969, SimpleFeatureImpl.Attribute: flt=-71.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-70 -70), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:50 UTC 1969, SimpleFeatureImpl.Attribute: flt=-70.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-69 -69), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:51 UTC 1969, SimpleFeatureImpl.Attribute: flt=-69.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-68 -68), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:52 UTC 1969, SimpleFeatureImpl.Attribute: flt=-68.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-67 -67), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:53 UTC 1969, SimpleFeatureImpl.Attribute: flt=-67.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-66 -66), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:54 UTC 1969, SimpleFeatureImpl.Attribute: flt=-66.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-65 -65), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:55 UTC 1969, SimpleFeatureImpl.Attribute: flt=-65.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-64 -64), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:56 UTC 1969, SimpleFeatureImpl.Attribute: flt=-64.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-63 -63), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:57 UTC 1969, SimpleFeatureImpl.Attribute: flt=-63.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-62 -62), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:58 UTC 1969, SimpleFeatureImpl.Attribute: flt=-62.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-61 -61), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:58:59 UTC 1969, SimpleFeatureImpl.Attribute: flt=-61.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-60 -60), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:00 UTC 1969, SimpleFeatureImpl.Attribute: flt=-60.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-59 -59), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:01 UTC 1969, SimpleFeatureImpl.Attribute: flt=-59.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-58 -58), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:02 UTC 1969, SimpleFeatureImpl.Attribute: flt=-58.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-57 -57), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:03 UTC 1969, SimpleFeatureImpl.Attribute: flt=-57.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-56 -56), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:04 UTC 1969, SimpleFeatureImpl.Attribute: flt=-56.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-55 -55), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:05 UTC 1969, SimpleFeatureImpl.Attribute: flt=-55.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-54 -54), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:06 UTC 1969, SimpleFeatureImpl.Attribute: flt=-54.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-53 -53), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:07 UTC 1969, SimpleFeatureImpl.Attribute: flt=-53.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-52 -52), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:08 UTC 1969, SimpleFeatureImpl.Attribute: flt=-52.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-51 -51), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:09 UTC 1969, SimpleFeatureImpl.Attribute: flt=-51.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-50 -50), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:10 UTC 1969, SimpleFeatureImpl.Attribute: flt=-50.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-49 -49), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:11 UTC 1969, SimpleFeatureImpl.Attribute: flt=-49.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-48 -48), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:12 UTC 1969, SimpleFeatureImpl.Attribute: flt=-48.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-47 -47), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:13 UTC 1969, SimpleFeatureImpl.Attribute: flt=-47.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-46 -46), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:14 UTC 1969, SimpleFeatureImpl.Attribute: flt=-46.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-45 -45), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:15 UTC 1969, SimpleFeatureImpl.Attribute: flt=-45.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-44 -44), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:16 UTC 1969, SimpleFeatureImpl.Attribute: flt=-44.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-43 -43), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:17 UTC 1969, SimpleFeatureImpl.Attribute: flt=-43.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-42 -42), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:18 UTC 1969, SimpleFeatureImpl.Attribute: flt=-42.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-41 -41), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:19 UTC 1969, SimpleFeatureImpl.Attribute: flt=-41.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-40 -40), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:20 UTC 1969, SimpleFeatureImpl.Attribute: flt=-40.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-39 -39), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:21 UTC 1969, SimpleFeatureImpl.Attribute: flt=-39.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-38 -38), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:22 UTC 1969, SimpleFeatureImpl.Attribute: flt=-38.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-37 -37), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:23 UTC 1969, SimpleFeatureImpl.Attribute: flt=-37.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-36 -36), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:24 UTC 1969, SimpleFeatureImpl.Attribute: flt=-36.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-35 -35), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:25 UTC 1969, SimpleFeatureImpl.Attribute: flt=-35.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-34 -34), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:26 UTC 1969, SimpleFeatureImpl.Attribute: flt=-34.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-33 -33), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:27 UTC 1969, SimpleFeatureImpl.Attribute: flt=-33.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-32 -32), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:28 UTC 1969, SimpleFeatureImpl.Attribute: flt=-32.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-31 -31), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:29 UTC 1969, SimpleFeatureImpl.Attribute: flt=-31.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-30 -30), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:30 UTC 1969, SimpleFeatureImpl.Attribute: flt=-30.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-29 -29), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:31 UTC 1969, SimpleFeatureImpl.Attribute: flt=-29.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-28 -28), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:32 UTC 1969, SimpleFeatureImpl.Attribute: flt=-28.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-27 -27), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:33 UTC 1969, SimpleFeatureImpl.Attribute: flt=-27.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-26 -26), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:34 UTC 1969, SimpleFeatureImpl.Attribute: flt=-26.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-25 -25), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:35 UTC 1969, SimpleFeatureImpl.Attribute: flt=-25.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-24 -24), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:36 UTC 1969, SimpleFeatureImpl.Attribute: flt=-24.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-23 -23), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:37 UTC 1969, SimpleFeatureImpl.Attribute: flt=-23.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-22 -22), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:38 UTC 1969, SimpleFeatureImpl.Attribute: flt=-22.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-21 -21), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:39 UTC 1969, SimpleFeatureImpl.Attribute: flt=-21.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-20 -20), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:40 UTC 1969, SimpleFeatureImpl.Attribute: flt=-20.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-19 -19), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:41 UTC 1969, SimpleFeatureImpl.Attribute: flt=-19.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-18 -18), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:42 UTC 1969, SimpleFeatureImpl.Attribute: flt=-18.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-17 -17), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:43 UTC 1969, SimpleFeatureImpl.Attribute: flt=-17.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-16 -16), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:44 UTC 1969, SimpleFeatureImpl.Attribute: flt=-16.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-15 -15), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:45 UTC 1969, SimpleFeatureImpl.Attribute: flt=-15.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-14 -14), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:46 UTC 1969, SimpleFeatureImpl.Attribute: flt=-14.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-13 -13), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:47 UTC 1969, SimpleFeatureImpl.Attribute: flt=-13.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-12 -12), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:48 UTC 1969, SimpleFeatureImpl.Attribute: flt=-12.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-11 -11), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:49 UTC 1969, SimpleFeatureImpl.Attribute: flt=-11.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-10 -10), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:50 UTC 1969, SimpleFeatureImpl.Attribute: flt=-10.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-9 -9), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:51 UTC 1969, SimpleFeatureImpl.Attribute: flt=-9.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-8 -8), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:52 UTC 1969, SimpleFeatureImpl.Attribute: flt=-8.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-7 -7), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:53 UTC 1969, SimpleFeatureImpl.Attribute: flt=-7.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-6 -6), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:54 UTC 1969, SimpleFeatureImpl.Attribute: flt=-6.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-5 -5), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:55 UTC 1969, SimpleFeatureImpl.Attribute: flt=-5.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-4 -4), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:56 UTC 1969, SimpleFeatureImpl.Attribute: flt=-4.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-3 -3), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:57 UTC 1969, SimpleFeatureImpl.Attribute: flt=-3.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-2 -2), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:58 UTC 1969, SimpleFeatureImpl.Attribute: flt=-2.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (-1 -1), SimpleFeatureImpl.Attribute: date=Wed Dec 31 23:59:59 UTC 1969, SimpleFeatureImpl.Attribute: flt=-1.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (0 0), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:00 UTC 1970, SimpleFeatureImpl.Attribute: flt=0.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (1 1), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:01 UTC 1970, SimpleFeatureImpl.Attribute: flt=1.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (2 2), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:02 UTC 1970, SimpleFeatureImpl.Attribute: flt=2.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (3 3), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:03 UTC 1970, SimpleFeatureImpl.Attribute: flt=3.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (4 4), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:04 UTC 1970, SimpleFeatureImpl.Attribute: flt=4.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (5 5), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:05 UTC 1970, SimpleFeatureImpl.Attribute: flt=5.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (6 6), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:06 UTC 1970, SimpleFeatureImpl.Attribute: flt=6.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (7 7), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:07 UTC 1970, SimpleFeatureImpl.Attribute: flt=7.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (8 8), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:08 UTC 1970, SimpleFeatureImpl.Attribute: flt=8.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (9 9), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:09 UTC 1970, SimpleFeatureImpl.Attribute: flt=9.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (10 10), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:10 UTC 1970, SimpleFeatureImpl.Attribute: flt=10.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (11 11), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:11 UTC 1970, SimpleFeatureImpl.Attribute: flt=11.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (12 12), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:12 UTC 1970, SimpleFeatureImpl.Attribute: flt=12.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (13 13), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:13 UTC 1970, SimpleFeatureImpl.Attribute: flt=13.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (14 14), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:14 UTC 1970, SimpleFeatureImpl.Attribute: flt=14.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (15 15), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:15 UTC 1970, SimpleFeatureImpl.Attribute: flt=15.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (16 16), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:16 UTC 1970, SimpleFeatureImpl.Attribute: flt=16.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (17 17), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:17 UTC 1970, SimpleFeatureImpl.Attribute: flt=17.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (18 18), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:18 UTC 1970, SimpleFeatureImpl.Attribute: flt=18.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (19 19), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:19 UTC 1970, SimpleFeatureImpl.Attribute: flt=19.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (20 20), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:20 UTC 1970, SimpleFeatureImpl.Attribute: flt=20.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (21 21), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:21 UTC 1970, SimpleFeatureImpl.Attribute: flt=21.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (22 22), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:22 UTC 1970, SimpleFeatureImpl.Attribute: flt=22.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (23 23), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:23 UTC 1970, SimpleFeatureImpl.Attribute: flt=23.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (24 24), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:24 UTC 1970, SimpleFeatureImpl.Attribute: flt=24.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (25 25), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:25 UTC 1970, SimpleFeatureImpl.Attribute: flt=25.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (26 26), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:26 UTC 1970, SimpleFeatureImpl.Attribute: flt=26.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (27 27), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:27 UTC 1970, SimpleFeatureImpl.Attribute: flt=27.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (28 28), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:28 UTC 1970, SimpleFeatureImpl.Attribute: flt=28.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (29 29), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:29 UTC 1970, SimpleFeatureImpl.Attribute: flt=29.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (30 30), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:30 UTC 1970, SimpleFeatureImpl.Attribute: flt=30.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (31 31), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:31 UTC 1970, SimpleFeatureImpl.Attribute: flt=31.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (32 32), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:32 UTC 1970, SimpleFeatureImpl.Attribute: flt=32.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (33 33), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:33 UTC 1970, SimpleFeatureImpl.Attribute: flt=33.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (34 34), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:34 UTC 1970, SimpleFeatureImpl.Attribute: flt=34.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (35 35), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:35 UTC 1970, SimpleFeatureImpl.Attribute: flt=35.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (36 36), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:36 UTC 1970, SimpleFeatureImpl.Attribute: flt=36.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (37 37), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:37 UTC 1970, SimpleFeatureImpl.Attribute: flt=37.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (38 38), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:38 UTC 1970, SimpleFeatureImpl.Attribute: flt=38.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (39 39), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:39 UTC 1970, SimpleFeatureImpl.Attribute: flt=39.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (40 40), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:40 UTC 1970, SimpleFeatureImpl.Attribute: flt=40.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (41 41), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:41 UTC 1970, SimpleFeatureImpl.Attribute: flt=41.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (42 42), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:42 UTC 1970, SimpleFeatureImpl.Attribute: flt=42.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (43 43), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:43 UTC 1970, SimpleFeatureImpl.Attribute: flt=43.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (44 44), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:44 UTC 1970, SimpleFeatureImpl.Attribute: flt=44.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (45 45), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:45 UTC 1970, SimpleFeatureImpl.Attribute: flt=45.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (46 46), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:46 UTC 1970, SimpleFeatureImpl.Attribute: flt=46.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (47 47), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:47 UTC 1970, SimpleFeatureImpl.Attribute: flt=47.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (48 48), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:48 UTC 1970, SimpleFeatureImpl.Attribute: flt=48.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (49 49), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:49 UTC 1970, SimpleFeatureImpl.Attribute: flt=49.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (50 50), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:50 UTC 1970, SimpleFeatureImpl.Attribute: flt=50.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (51 51), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:51 UTC 1970, SimpleFeatureImpl.Attribute: flt=51.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (52 52), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:52 UTC 1970, SimpleFeatureImpl.Attribute: flt=52.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (53 53), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:53 UTC 1970, SimpleFeatureImpl.Attribute: flt=53.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (54 54), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:54 UTC 1970, SimpleFeatureImpl.Attribute: flt=54.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (55 55), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:55 UTC 1970, SimpleFeatureImpl.Attribute: flt=55.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (56 56), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:56 UTC 1970, SimpleFeatureImpl.Attribute: flt=56.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (57 57), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:57 UTC 1970, SimpleFeatureImpl.Attribute: flt=57.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (58 58), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:58 UTC 1970, SimpleFeatureImpl.Attribute: flt=58.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (59 59), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:00:59 UTC 1970, SimpleFeatureImpl.Attribute: flt=59.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (60 60), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:00 UTC 1970, SimpleFeatureImpl.Attribute: flt=60.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (61 61), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:01 UTC 1970, SimpleFeatureImpl.Attribute: flt=61.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (62 62), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:02 UTC 1970, SimpleFeatureImpl.Attribute: flt=62.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (63 63), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:03 UTC 1970, SimpleFeatureImpl.Attribute: flt=63.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (64 64), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:04 UTC 1970, SimpleFeatureImpl.Attribute: flt=64.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (65 65), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:05 UTC 1970, SimpleFeatureImpl.Attribute: flt=65.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (66 66), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:06 UTC 1970, SimpleFeatureImpl.Attribute: flt=66.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (67 67), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:07 UTC 1970, SimpleFeatureImpl.Attribute: flt=67.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (68 68), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:08 UTC 1970, SimpleFeatureImpl.Attribute: flt=68.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (69 69), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:09 UTC 1970, SimpleFeatureImpl.Attribute: flt=69.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (70 70), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:10 UTC 1970, SimpleFeatureImpl.Attribute: flt=70.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (71 71), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:11 UTC 1970, SimpleFeatureImpl.Attribute: flt=71.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (72 72), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:12 UTC 1970, SimpleFeatureImpl.Attribute: flt=72.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (73 73), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:13 UTC 1970, SimpleFeatureImpl.Attribute: flt=73.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (74 74), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:14 UTC 1970, SimpleFeatureImpl.Attribute: flt=74.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (75 75), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:15 UTC 1970, SimpleFeatureImpl.Attribute: flt=75.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (76 76), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:16 UTC 1970, SimpleFeatureImpl.Attribute: flt=76.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (77 77), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:17 UTC 1970, SimpleFeatureImpl.Attribute: flt=77.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (78 78), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:18 UTC 1970, SimpleFeatureImpl.Attribute: flt=78.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (79 79), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:19 UTC 1970, SimpleFeatureImpl.Attribute: flt=79.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (80 80), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:20 UTC 1970, SimpleFeatureImpl.Attribute: flt=80.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (81 81), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:21 UTC 1970, SimpleFeatureImpl.Attribute: flt=81.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (82 82), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:22 UTC 1970, SimpleFeatureImpl.Attribute: flt=82.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (83 83), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:23 UTC 1970, SimpleFeatureImpl.Attribute: flt=83.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (84 84), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:24 UTC 1970, SimpleFeatureImpl.Attribute: flt=84.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (85 85), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:25 UTC 1970, SimpleFeatureImpl.Attribute: flt=85.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (86 86), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:26 UTC 1970, SimpleFeatureImpl.Attribute: flt=86.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (87 87), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:27 UTC 1970, SimpleFeatureImpl.Attribute: flt=87.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (88 88), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:28 UTC 1970, SimpleFeatureImpl.Attribute: flt=88.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (89 89), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:29 UTC 1970, SimpleFeatureImpl.Attribute: flt=89.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (90 0), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:30 UTC 1970, SimpleFeatureImpl.Attribute: flt=90.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (91 1), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:31 UTC 1970, SimpleFeatureImpl.Attribute: flt=91.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (92 2), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:32 UTC 1970, SimpleFeatureImpl.Attribute: flt=92.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (93 3), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:33 UTC 1970, SimpleFeatureImpl.Attribute: flt=93.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (94 4), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:34 UTC 1970, SimpleFeatureImpl.Attribute: flt=94.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (95 5), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:35 UTC 1970, SimpleFeatureImpl.Attribute: flt=95.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (96 6), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:36 UTC 1970, SimpleFeatureImpl.Attribute: flt=96.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (97 7), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:37 UTC 1970, SimpleFeatureImpl.Attribute: flt=97.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (98 8), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:38 UTC 1970, SimpleFeatureImpl.Attribute: flt=98.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (99 9), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:39 UTC 1970, SimpleFeatureImpl.Attribute: flt=99.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (100 10), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:40 UTC 1970, SimpleFeatureImpl.Attribute: flt=100.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (101 11), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:41 UTC 1970, SimpleFeatureImpl.Attribute: flt=101.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (102 12), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:42 UTC 1970, SimpleFeatureImpl.Attribute: flt=102.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (103 13), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:43 UTC 1970, SimpleFeatureImpl.Attribute: flt=103.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (104 14), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:44 UTC 1970, SimpleFeatureImpl.Attribute: flt=104.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (105 15), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:45 UTC 1970, SimpleFeatureImpl.Attribute: flt=105.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (106 16), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:46 UTC 1970, SimpleFeatureImpl.Attribute: flt=106.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (107 17), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:47 UTC 1970, SimpleFeatureImpl.Attribute: flt=107.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (108 18), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:48 UTC 1970, SimpleFeatureImpl.Attribute: flt=108.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (109 19), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:49 UTC 1970, SimpleFeatureImpl.Attribute: flt=109.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (110 20), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:50 UTC 1970, SimpleFeatureImpl.Attribute: flt=110.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (111 21), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:51 UTC 1970, SimpleFeatureImpl.Attribute: flt=111.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (112 22), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:52 UTC 1970, SimpleFeatureImpl.Attribute: flt=112.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (113 23), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:53 UTC 1970, SimpleFeatureImpl.Attribute: flt=113.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (114 24), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:54 UTC 1970, SimpleFeatureImpl.Attribute: flt=114.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (115 25), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:55 UTC 1970, SimpleFeatureImpl.Attribute: flt=115.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (116 26), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:56 UTC 1970, SimpleFeatureImpl.Attribute: flt=116.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (117 27), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:57 UTC 1970, SimpleFeatureImpl.Attribute: flt=117.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (118 28), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:58 UTC 1970, SimpleFeatureImpl.Attribute: flt=118.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (119 29), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:01:59 UTC 1970, SimpleFeatureImpl.Attribute: flt=119.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (120 30), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:00 UTC 1970, SimpleFeatureImpl.Attribute: flt=120.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (121 31), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:01 UTC 1970, SimpleFeatureImpl.Attribute: flt=121.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (122 32), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:02 UTC 1970, SimpleFeatureImpl.Attribute: flt=122.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (123 33), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:03 UTC 1970, SimpleFeatureImpl.Attribute: flt=123.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (124 34), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:04 UTC 1970, SimpleFeatureImpl.Attribute: flt=124.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (125 35), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:05 UTC 1970, SimpleFeatureImpl.Attribute: flt=125.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (126 36), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:06 UTC 1970, SimpleFeatureImpl.Attribute: flt=126.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (127 37), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:07 UTC 1970, SimpleFeatureImpl.Attribute: flt=127.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (128 38), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:08 UTC 1970, SimpleFeatureImpl.Attribute: flt=128.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (129 39), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:09 UTC 1970, SimpleFeatureImpl.Attribute: flt=129.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (130 40), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:10 UTC 1970, SimpleFeatureImpl.Attribute: flt=130.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (131 41), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:11 UTC 1970, SimpleFeatureImpl.Attribute: flt=131.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (132 42), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:12 UTC 1970, SimpleFeatureImpl.Attribute: flt=132.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (133 43), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:13 UTC 1970, SimpleFeatureImpl.Attribute: flt=133.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (134 44), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:14 UTC 1970, SimpleFeatureImpl.Attribute: flt=134.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (135 45), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:15 UTC 1970, SimpleFeatureImpl.Attribute: flt=135.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (136 46), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:16 UTC 1970, SimpleFeatureImpl.Attribute: flt=136.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (137 47), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:17 UTC 1970, SimpleFeatureImpl.Attribute: flt=137.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (138 48), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:18 UTC 1970, SimpleFeatureImpl.Attribute: flt=138.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (139 49), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:19 UTC 1970, SimpleFeatureImpl.Attribute: flt=139.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (140 50), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:20 UTC 1970, SimpleFeatureImpl.Attribute: flt=140.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (141 51), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:21 UTC 1970, SimpleFeatureImpl.Attribute: flt=141.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (142 52), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:22 UTC 1970, SimpleFeatureImpl.Attribute: flt=142.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (143 53), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:23 UTC 1970, SimpleFeatureImpl.Attribute: flt=143.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (144 54), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:24 UTC 1970, SimpleFeatureImpl.Attribute: flt=144.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (145 55), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:25 UTC 1970, SimpleFeatureImpl.Attribute: flt=145.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (146 56), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:26 UTC 1970, SimpleFeatureImpl.Attribute: flt=146.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (147 57), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:27 UTC 1970, SimpleFeatureImpl.Attribute: flt=147.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (148 58), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:28 UTC 1970, SimpleFeatureImpl.Attribute: flt=148.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (149 59), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:29 UTC 1970, SimpleFeatureImpl.Attribute: flt=149.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (150 60), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:30 UTC 1970, SimpleFeatureImpl.Attribute: flt=150.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (151 61), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:31 UTC 1970, SimpleFeatureImpl.Attribute: flt=151.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (152 62), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:32 UTC 1970, SimpleFeatureImpl.Attribute: flt=152.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (153 63), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:33 UTC 1970, SimpleFeatureImpl.Attribute: flt=153.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (154 64), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:34 UTC 1970, SimpleFeatureImpl.Attribute: flt=154.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (155 65), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:35 UTC 1970, SimpleFeatureImpl.Attribute: flt=155.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (156 66), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:36 UTC 1970, SimpleFeatureImpl.Attribute: flt=156.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (157 67), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:37 UTC 1970, SimpleFeatureImpl.Attribute: flt=157.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (158 68), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:38 UTC 1970, SimpleFeatureImpl.Attribute: flt=158.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (159 69), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:39 UTC 1970, SimpleFeatureImpl.Attribute: flt=159.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (160 70), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:40 UTC 1970, SimpleFeatureImpl.Attribute: flt=160.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (161 71), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:41 UTC 1970, SimpleFeatureImpl.Attribute: flt=161.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (162 72), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:42 UTC 1970, SimpleFeatureImpl.Attribute: flt=162.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (163 73), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:43 UTC 1970, SimpleFeatureImpl.Attribute: flt=163.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (164 74), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:44 UTC 1970, SimpleFeatureImpl.Attribute: flt=164.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (165 75), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:45 UTC 1970, SimpleFeatureImpl.Attribute: flt=165.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (166 76), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:46 UTC 1970, SimpleFeatureImpl.Attribute: flt=166.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (167 77), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:47 UTC 1970, SimpleFeatureImpl.Attribute: flt=167.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (168 78), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:48 UTC 1970, SimpleFeatureImpl.Attribute: flt=168.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (169 79), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:49 UTC 1970, SimpleFeatureImpl.Attribute: flt=169.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (170 80), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:50 UTC 1970, SimpleFeatureImpl.Attribute: flt=170.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (171 81), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:51 UTC 1970, SimpleFeatureImpl.Attribute: flt=171.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (172 82), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:52 UTC 1970, SimpleFeatureImpl.Attribute: flt=172.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (173 83), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:53 UTC 1970, SimpleFeatureImpl.Attribute: flt=173.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (174 84), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:54 UTC 1970, SimpleFeatureImpl.Attribute: flt=174.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (175 85), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:55 UTC 1970, SimpleFeatureImpl.Attribute: flt=175.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=RECTANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (176 86), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:56 UTC 1970, SimpleFeatureImpl.Attribute: flt=176.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=SQUARE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (177 87), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:57 UTC 1970, SimpleFeatureImpl.Attribute: flt=177.0, SimpleFeatureImpl.Attribute: color=RED, SimpleFeatureImpl.Attribute: shape=CIRCLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (178 88), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:58 UTC 1970, SimpleFeatureImpl.Attribute: flt=178.0, SimpleFeatureImpl.Attribute: color=GREEN, SimpleFeatureImpl.Attribute: shape=TRIANGLE], pygw => SimpleFeatureImpl:TestPointType=[SimpleFeatureImpl.Attribute: the_geom=POINT (179 89), SimpleFeatureImpl.Attribute: date=Thu Jan 01 00:02:59 UTC 1970, SimpleFeatureImpl.Attribute: flt=179.0, SimpleFeatureImpl.Attribute: color=BLUE, SimpleFeatureImpl.Attribute: shape=RECTANGLE]])
Source code
def write_test_data(ds, *expected_indices, data=TEST_DATA):
    writer = ds.create_writer(POINT_TYPE_ADAPTER.get_type_name())
    for pt in data:
        results = writer.write(pt)
        assert not results.is_empty()
        written_indices = results.get_written_index_names()
        assert len(written_indices) == len(expected_indices)
        assert all([idx.get_name() in written_indices for idx in expected_indices])
    writer.close()
def write_test_data_offset(ds, *expected_indices)
Source code
def write_test_data_offset(ds, *expected_indices):
    write_test_data(ds, *expected_indices, data=TEST_DATA_OFFSET)