Separate multi-block comments; update README
This commit is contained in:
parent
623b939df1
commit
109ae71059
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1,7 @@
|
|||||||
|
# Vim stuff
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
|
||||||
composer.lock
|
composer.lock
|
||||||
vendor/
|
vendor/
|
||||||
docs/
|
docs/
|
||||||
|
@ -72,8 +72,10 @@ echo $blob->bitpix->type(); //int32
|
|||||||
|
|
||||||
## TODO
|
## TODO
|
||||||
|
|
||||||
- [x] Read keywords from the FITS header
|
|
||||||
- [x] Separate the main data table (actual image data) from the header (partly done? Who knows...)
|
- [x] Separate the main data table (actual image data) from the header (partly done? Who knows...)
|
||||||
- [ ] Actually display the image in the standard output
|
- [x] Read keywords from the FITS header (but consider values and comments could be more than 80-bytes long)
|
||||||
|
- [ ] History keywords?
|
||||||
|
- [ ] FITS extensions? What to do with NAXIS > 2?
|
||||||
|
- [ ] Actually display the image in the standard output (with SVG?)
|
||||||
- [ ] Save the image to PNG and JPG
|
- [ ] Save the image to PNG and JPG
|
||||||
- [ ] Manipulate the bits using basic processing algorithms??
|
- [ ] Manipulate the bits using basic processing algorithms??
|
||||||
|
@ -28,6 +28,8 @@ class FitsHeader
|
|||||||
*
|
*
|
||||||
* From the spec: each keyword record, including
|
* From the spec: each keyword record, including
|
||||||
* any comments, is at most 80 bytes long
|
* any comments, is at most 80 bytes long
|
||||||
|
* @todo Comments and keyword values could span more
|
||||||
|
than one 80-bytes block...
|
||||||
* @return Keyword[]
|
* @return Keyword[]
|
||||||
*/
|
*/
|
||||||
private function readKeywords(): array
|
private function readKeywords(): array
|
||||||
@ -50,6 +52,11 @@ class FitsHeader
|
|||||||
$name = $keyVal[0];
|
$name = $keyVal[0];
|
||||||
$value = $keyVal[1] ?? '';
|
$value = $keyVal[1] ?? '';
|
||||||
|
|
||||||
|
if (str_starts_with($name, 'COMMENT')) {
|
||||||
|
$value = explode('COMMENT', $name)[1];
|
||||||
|
$name = 'COMMENT';
|
||||||
|
}
|
||||||
|
|
||||||
$keywords[] = new Keyword(
|
$keywords[] = new Keyword(
|
||||||
name : $name,
|
name : $name,
|
||||||
value : $value,
|
value : $value,
|
||||||
|
@ -6,19 +6,29 @@ use PHPUnit\Framework\TestCase;
|
|||||||
|
|
||||||
final class FitsHeaderTest extends TestCase
|
final class FitsHeaderTest extends TestCase
|
||||||
{
|
{
|
||||||
public function testKeywordValue(): void
|
private Dumbastro\FitsPhp\Fits $fits;
|
||||||
{
|
private Dumbastro\FitsPhp\FitsHeader $header;
|
||||||
$fits = new Dumbastro\FitsPhp\Fits(__DIR__ . '/test_orion.fit');
|
|
||||||
$header = new Dumbastro\FitsPhp\FitsHeader($fits->headerBlock);
|
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
$this->fits = new Dumbastro\FitsPhp\Fits(__DIR__ . '/test_orion.fit');
|
||||||
|
$this->header = new Dumbastro\FitsPhp\FitsHeader($this->fits->headerBlock);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testKeywordValues(): void
|
||||||
|
{
|
||||||
$this->assertSame(
|
$this->assertSame(
|
||||||
trim($header->getKeywordValue('BITPIX')),
|
trim($this->header->getKeywordValue('BITPIX')),
|
||||||
'16'
|
'16'
|
||||||
);
|
);
|
||||||
$this->assertSame(
|
$this->assertSame(
|
||||||
trim($header->getKeywordValue('NAXIS')),
|
trim($this->header->getKeywordValue('NAXIS')),
|
||||||
'3'
|
'3'
|
||||||
);
|
);
|
||||||
|
$this->assertSame(
|
||||||
|
trim($this->header->getKeywordValue('STACKCNT')),
|
||||||
|
'86'
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
33
tests/ImageBlobTest.php
Normal file
33
tests/ImageBlobTest.php
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
final class ImageBlobTest extends TestCase
|
||||||
|
{
|
||||||
|
private Dumbastro\FitsPhp\ImageBlob $imageBlob;
|
||||||
|
private Dumbastro\FitsPhp\Fits $fits;
|
||||||
|
private Dumbastro\FitsPhp\FitsHeader $header;
|
||||||
|
|
||||||
|
protected function setUp(): void
|
||||||
|
{
|
||||||
|
$this->fits = new Dumbastro\FitsPhp\Fits(__DIR__ . '/test_orion.fit');
|
||||||
|
$this->header = $this->fits->header();
|
||||||
|
$blob = $this->fits->imageBlob;
|
||||||
|
|
||||||
|
$this->imageBlob = new Dumbastro\FitsPhp\ImageBlob($this->header, $blob);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testBitpixValue(): void
|
||||||
|
{
|
||||||
|
$this->assertSame($this->imageBlob->bitpix->value, 16);
|
||||||
|
}
|
||||||
|
|
||||||
|
public function testDataBitsLength(): void
|
||||||
|
{
|
||||||
|
$this->assertSame($this->imageBlob->dataBits, 16*2448*1669);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user