1) un GeoJSON multipunto (lista de coordenadas)
{'type': 'MultiPoint', 'coordinates': ((197434.0074146679, 90234.91638080444), (198639.4631111624, 89807.44982176385), (197758.8819995387, 88943.96737250185), (198374.4338445572, 88473.7541575572), (197895.6712984317, 88020.63960497417), (196921.0475438192, 88345.51418984502), (196536.3276406827, 89294.48995091513), (197434.0074146679, 90234.91638080444))}
2) una GeometryCollection (lista de puntos)
{'type': 'GeometryCollection', 'geometries': [{'type': 'Point', 'coordinates': (197434.0074146679, 90234.91638080444)}, {'type': 'Point', 'coordinates': (198639.4631111624, 89807.44982176385)}, {'type': 'Point', 'coordinates': (197758.8819995387, 88943.96737250185)}, {'type': 'Point', 'coordinates': (198374.4338445572, 88473.7541575572)}, {'type': 'Point', 'coordinates': (197895.6712984317, 88020.63960497417)}, {'type': 'Point', 'coordinates': (196921.0475438192, 88345.51418984502)}, {'type': 'Point', 'coordinates': (196536.3276406827, 89294.48995091513)}, {'type': 'Point', 'coordinates': (197434.0074146679, 90234.91638080444)}]}
3) como GeometryCollection es una simple colección de geometrías
{'type': 'GeometryCollection', 'geometries':{'type': 'MultiPoint', 'coordinates': ((197434.0074146679, 90234.91638080444), (198639.4631111624, 89807.44982176385), (197758.8819995387, 88943.96737250185), (198374.4338445572, 88473.7541575572), (197895.6712984317, 88020.63960497417), (196921.0475438192, 88345.51418984502), (196536.3276406827, 89294.48995091513), (197434.0074146679, 90234.91638080444))}}
Pero mira la respuesta de Sean Gillies