Skip to content

Commit

Permalink
Merge pull request #27 from SenteraLLC/feature/active-field
Browse files Browse the repository at this point in the history
Active fields for bounding box query
  • Loading branch information
jwiem authored May 25, 2021
2 parents 00fbf38 + f798379 commit de7a520
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sentera/_version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Defines package version. Parsed by setup.py and imported by __init__.py."""

__version__ = "2.5.2"
__version__ = "2.6.2"
1 change: 1 addition & 0 deletions sentera/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ def get_fields_within_bounds(token, sw_lat, sw_lon, ne_lat, ne_lon):
name
latitude
longitude
active
}
}
}"""
Expand Down
2 changes: 2 additions & 0 deletions sentera/tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ def request_callback(request, uri, response_headers):
"name": "Boundary Test",
"latitude": 42.734587032522,
"longitude": -95.625703409314,
"active": "true",
}
],
}
Expand All @@ -149,6 +150,7 @@ def request_callback(request, uri, response_headers):
"name": "Boundary Test",
"latitude": [42.734587],
"longitude": [-95.625703],
"active": "true",
}
)

Expand Down

0 comments on commit de7a520

Please sign in to comment.